7

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.

d.putto
  • 6,595
  • 10
  • 38
  • 44
  • I'm not aware of such a function and have never missed it because I don't feel the need to look at each element of large objects. However, you could implement that yourself. – Roland Feb 20 '15 at 12:56

1 Answers1

6

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

Matthew Plourde
  • 42,659
  • 5
  • 91
  • 112