R View() does not display all columns of data frame

前端 未结 5 2000
梦毁少年i
梦毁少年i 2020-12-09 08:25

I have been adding columns to a data frame and using View() to check that it did what I expected. I have repeated lines of code along the lines of:



        
5条回答
  •  有刺的猬
    2020-12-09 08:39

    I also see this problem with x <- matrix(1:200,nrow=1); View(x) in RStudio, but not in vanilla R. It is a known limitation and they're working on it. You can contact the devs on their forum to give your feedback (and have done so, I see).

提交回复
热议问题