I'd like to write some objects (eg arrays) to a log file. cat() flattens them out. I'd like them formatted as in 'print' but print only writes to stdout. Is there a simple way to achieve this result? Thanks -- View this message in context: http://www.nabble.com/print%28%29-to-file--tp24397445p24397445.html Sent from the R help mailing list archive at Nabble.com.
?sink -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center Intermountain Healthcare greg.snow at imail.org 801.408.8111> -----Original Message----- > From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- > project.org] On Behalf Of Steve Jaffe > Sent: Wednesday, July 08, 2009 1:03 PM > To: r-help at r-project.org > Subject: [R] print() to file? > > > I'd like to write some objects (eg arrays) to a log file. cat() > flattens them > out. I'd like them formatted as in 'print' but print only writes to > stdout. > Is there a simple way to achieve this result? > > Thanks > > -- > View this message in context: http://www.nabble.com/print%28%29-to- > file--tp24397445p24397445.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting- > guide.html > and provide commented, minimal, self-contained, reproducible code.
One possibility is to use sink (see ?sink). --- On Thu, 9/7/09, Steve Jaffe <sjaffe at riskspan.com> wrote:> From: Steve Jaffe <sjaffe at riskspan.com> > Subject: [R] print() to file? > To: r-help at r-project.org > Received: Thursday, 9 July, 2009, 5:03 AM > > I'd like to write some objects (eg arrays) to a log file. > cat() flattens them > out. I'd like them formatted as in 'print' but print only > writes to stdout. > Is there a simple way to achieve this result? > > Thanks > > -- > View this message in context: http://www.nabble.com/print%28%29-to-file--tp24397445p24397445.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org > mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, > reproducible code. >