Re: [R] getOptions("max.print") in R

2009-07-01 Thread Duncan Murdoch
On 01/07/2009 8:04 AM, saurav pathak wrote: I am typing the following on the command prompt: variab = read.csv(file.choose(), header=T) variab It lists 900,000 ( this is the total number of observations in "variab" ) minus 797124 observations and prompts the following message [ reached ge

Re: [R] getOptions("max.print") in R

2009-07-01 Thread jim holtman
Change the value with 'options': max.print: integer, defaulting to 9. print or show methods can make use of this option, to limit the amount of information that is printed, to something in the order of (and typically slightly less than) max.print entries.  Why would you want all 900,000 lines

[R] getOptions("max.print") in R

2009-07-01 Thread saurav pathak
I am typing the following on the command prompt: >variab = read.csv(file.choose(), header=T) >variab It lists 900,000 ( this is the total number of observations in "variab" ) minus 797124 observations and prompts the following message [ reached getOption("max.print") -- omitted 797124 entries ]