Re: [R] printing all rows

2008-09-10 Thread Greg Snow
PURKAYASTHA Sent: Tuesday, September 09, 2008 9:13 AM To: r-help@r-project.org Subject: [R] printing all rows Hi, my data table has 38939 rows. R prints the first 1 columns and then prints an error message:[ reached getOption(max.print) -- omitted 27821 rows ]]. is it possible to set

[R] printing all rows

2008-09-09 Thread ANJAN PURKAYASTHA
Hi, my data table has 38939 rows. R prints the first 1 columns and then prints an error message:[ reached getOption(max.print) -- omitted 27821 rows ]]. is it possible to set the maxprint parameter so that R prints all the rows? tia, anjan -- = anjan

Re: [R] printing all rows

2008-09-09 Thread Adam D. I. Kramer
options(max.print) $max.print [1] 9 options(max.print=10) options(max.print) $max.print [1] 1e+05 ...so check what your max.print is, and figure out whether you need to set it to nrow, ncol, or nrow*ncol of your data frame...then do so...though of course, this is a global variable,