For some weird reason, RStudio is showing me all columns of a data.frame when I use the View() function or when I click on a data frame in the environment pane. I installed a new version of R three weeks ago (because I have a new Windows10 laptop) and since then I am running into this problem.
This is really annoying because R becomes super slow when having to display more than 100 columns. Random example of code
a=data.frame(replicate(1000,sample(0:1,10,rep=TRUE)))
View(a)
In the good old days, only the first 100 columns were displayed...
Any ideas on how to change this back to normal?