Simple question but I can't figure it out in RStudio:
View(mydata)
only gives me 1000 rows.
How can I increase this limit to a number of my choosing? Say, like 25,000?
Simple question but I can't figure it out in RStudio:
View(mydata)
only gives me 1000 rows.
How can I increase this limit to a number of my choosing? Say, like 25,000?
It is not View() but also works in command-line R:
options(max.print=25000)
Printing is set to 25000 lines now.
RStudio preview version - Version 0.99.235 has "infinite scroll", so you can view all the data.
utils::View(df)
will print everything also in Rstudio (Though this is not using the native Rstudio viewer, we will have to wait for the next version of Rstudio for that)
I don't think it's possible to view more than 1000 rows at a time. However, if your goal is to view data beyond the 1000th row, you can subset your dataset, as follows:
View(df[2000:3000,]) # will show rows 2000-3000
View(df[5000:6000,]) # will show rows 5000-6000