Re: [R] Issue when reading a table into R

2013-03-07 Thread David Reiner
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

Re: [R] Issue when reading a table into R

2013-03-06 Thread Sarah Goslee
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

Re: [R] Issue when reading a table into R

2013-03-06 Thread jim holtman
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

Re: [R] Issue when reading a table into R

2013-03-06 Thread Duncan Murdoch
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

Re: [R] Issue when reading a table into R

2013-03-06 Thread Rich Shepard
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

[R] Issue when reading a table into R

2013-03-06 Thread Paul Bernal
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