Skip to content
Prev 353726 / 398502 Next

Output In R

That's a very odd request: surely you would not want to visually inspect 3 million rows in the console?

Typically one would assign the (large) results of a function to a variable for further processing. If you need to inspect the beginning and end of your dataset, use head() and tail().

Try getOption("max.print") to see what it is set to: it's a large and reasonable value, remember your console uses memory and at some point it needs to truncate the values you store in the console, to stay within its allotted memory. You can change the "max.print" option, but I can't see how that would be reasonable.

Cheers,
Boris
On Aug 18, 2015, at 8:41 AM, Shivi82 <shivibhatia at ymail.com> wrote: