[R] Output In R

Loris Bennett loris.bennett at fu-berlin.de
Tue Aug 18 17:25:18 CEST 2015


Shivi82 <shivibhatia at ymail.com> writes:

> Hello All, 
>
>  As i am a newbie in R so most of you would have seen this question zillion
> times. I searched for the answer on this forum as well on other various
> forums however could not find the answer i am looking for.
>
>  I am dplyr package and used a very basic code:
>  select(june,city,state,mod)
>
>  The data sheet i am using has more than 3 million observations but the
> console does not print all of them and show only few options and give a
> message:
> [ reached getOption("max.print") -- omitted 376341 rows ]
>
>
>  What is the option that i need to add to see all values in the output.
> Similarly once i scroll down and then if i scroll up i am not able to see
> the values starting from row #1. Please suggest

You need to sharpen your searching skills.  The first result of
looking  for

r max.print

via a well-known search engine is a question on StackOverflow.  One of
the answers given there is to set the value of max.print in the
following manner:

options(max.print=999999)

I'll leave finding the appropriate value as an exercise for the reader.

Cheers,

Loris

-- 
This signature is currently under construction.



More information about the R-help mailing list