Sarah Goslee
Sent: Wednesday, March 06, 2013 3:21 PM
To: Paul Bernal
Cc: r-help
Subject: Re: [R] Issue when reading a table into R
Since nobody else has mentioned it: if you are seeing that message
when you are reading data in, then you probably failed to assign the
data to an R object.
mydata
Since nobody else has mentioned it: if you are seeing that message
when you are reading data in, then you probably failed to assign the
data to an R object.
mydata <- read.table("somefile") # correct
read.table("somefile") # will simply print your data to the console, not save it
I'm not entirely
just a limitation on the printing of the data to the console. Change the
'max.print' option if you want more lines output to the console.
On Wed, Mar 6, 2013 at 3:58 PM, Paul Bernal wrote:
> Hello everyone,
>
> I was reading a table into R, and when trying to retrieve it the following
> message
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 wel
On Wed, 6 Mar 2013, Paul Bernal wrote:
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
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 pur
6 matches
Mail list logo