x=list(...">

"more" like command in console R

Is there any command in the R console that behaves the same as the more command on Linux? Consider this

>x=list(seq(100000), seq(100000)) >x 

It displays everything in one go and displays a message at the end of "getOption (" max.print ") reached. Scrolling up does not show me the first values. I need a command like bigger (x), which will be displayed more and more by pressing the spacebar.

+6
source share
1 answer

Will the ?page do the trick? e.g. page(list(a = rnorm(1000), b=rnorm(1000)))

+5
source

Source: https://habr.com/ru/post/982788/


All Articles