Message-ID: <5137B121.4020605@gmail.com>
Date: 2013-03-06T21:12:01Z
From: Duncan Murdoch
Subject: Issue when reading a table into R
In-Reply-To: <CAMOcQfPbZ2=o-woc7qbrkL0RGsYGpV5h7drtDR66nDFxYdU4qQ@mail.gmail.com>
On 06/03/2013 3:58 PM, Paul Bernal wrote:
> Hello everyone,
>
> I was reading a table into R, and when trying to retrieve it the following
> message appeared:
>
> [ reached getOption("max.print") -- omitted 469376 rows ]
>
> Does this mean that R left out 469376 rows? Or R is taking those 469376
> rows as well and the limitation is only for printing purposes?
Only for printing. You can find out what the object looks like
internally by str(x) or similar function.
Duncan Murdoch