"more" like command in R console
r, rstudio
Solution
Would `?page` do the trick? e.g., `page(list(a = rnorm(1000), b=rnorm(1000)))`
Problem
Is there any command in R console which behaves same as "more" command in Linux? Consider this ``` >x=list(seq(100000), seq(100000)) >x ``` It displays everything at one go and shows message at the end "reached getOption("max.print")". Scrolling back to top doesn't show me the first values. I need a command like more(x) which will show more and more by pressing space bar.