Re: [R] Printing data frame with million rows

2011-08-07 Thread David Winsemius
On Aug 7, 2011, at 5:51 PM, peter dalgaard wrote: On Aug 7, 2011, at 21:31 , David Winsemius wrote: On Aug 7, 2011, at 2:37 PM, peter dalgaard wrote: On Aug 7, 2011, at 20:27 , David Winsemius wrote: On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: Dear all, I was working on number

Re: [R] Printing data frame with million rows

2011-08-07 Thread peter dalgaard
On Aug 7, 2011, at 21:31 , David Winsemius wrote: > > On Aug 7, 2011, at 2:37 PM, peter dalgaard wrote: > >> >> On Aug 7, 2011, at 20:27 , David Winsemius wrote: >> >>> >>> On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: >>> Dear all, I was working on number of files and at

Re: [R] Printing data frame with million rows

2011-08-07 Thread Bansal, Vikas
dalgaard Cc: Bansal, Vikas; r-help@r-project.org Subject: Re: [R] Printing data frame with million rows On Aug 7, 2011, at 2:37 PM, peter dalgaard wrote: > > On Aug 7, 2011, at 20:27 , David Winsemius wrote: > >> >> On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: >> >>

Re: [R] Printing data frame with million rows

2011-08-07 Thread David Winsemius
On Aug 7, 2011, at 2:37 PM, peter dalgaard wrote: On Aug 7, 2011, at 20:27 , David Winsemius wrote: On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: Dear all, I was working on number of files and at the end I got a data frame with approx. million rows.To prin this data frame in output,

Re: [R] Printing data frame with million rows

2011-08-07 Thread peter dalgaard
On Aug 7, 2011, at 20:27 , David Winsemius wrote: > > On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: > >> Dear all, >> >> I was working on number of files and at the end I got a data frame with >> approx. million rows.To prin this data frame in output, I used >> >> capture.output(print.dat

Re: [R] Printing data frame with million rows

2011-08-07 Thread Jorge Ivan Velez
?write.table HTH, Jorge On Sun, Aug 7, 2011 at 2:08 PM, Bansal, Vikas <> wrote: > Dear all, > > I was working on number of files and at the end I got a data frame with > approx. million rows.To prin this data frame in output, I used > > capture.output(print.data.frame(end,row.names=F), file = "

Re: [R] Printing data frame with million rows

2011-08-07 Thread Joshua Wiley
Hi Vikas, See ?print.default and ?options Your options are to set max.print in options higher or manually pass a max value to print. I'm not sure if it will let you print a million rows---print is typically used for output meant for the user and (again typically) users do not read through a mill

Re: [R] Printing data frame with million rows

2011-08-07 Thread David Winsemius
On Aug 7, 2011, at 2:08 PM, Bansal, Vikas wrote: Dear all, I was working on number of files and at the end I got a data frame with approx. million rows.To prin this data frame in output, I used capture.output(print.data.frame(end,row.names=F), file = "summary", append = FALSE) where en

[R] Printing data frame with million rows

2011-08-07 Thread Bansal, Vikas
Dear all, I was working on number of files and at the end I got a data frame with approx. million rows.To prin this data frame in output, I used capture.output(print.data.frame(end,row.names=F), file = "summary", append = FALSE) where end is the name of my data frame and summary is the name of