I don't find a function to print a string to file. Would somebody let me know what function I should use?
cat On Fri, Dec 18, 2009 at 2:12 PM, Peng Yu <pengyu.ut at gmail.com> wrote:> I don't find a function to print a string to file. Would somebody let > me know what function I should use? > > ______________________________________________ > 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. >-- Gray Calhoun Assistant Professor of Economics Iowa State University
Use the online help: help.search('file') and then see: base::sink Send R Output to a File help.search('print') will get you there also, but not as directly. The cat() function is good also, as Gray mentioned. -Don At 2:12 PM +1800 12/19/09, Peng Yu wrote:>I don't find a function to print a string to file. Would somebody let >me know what function I should use? > >______________________________________________ >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.-- -------------------------------------- Don MacQueen Environmental Protection Department Lawrence Livermore National Laboratory Livermore, CA, USA 925-423-1062
On Fri, Dec 18, 2009 at 12:12 PM, Peng Yu <pengyu.ut@gmail.com> wrote:> I don't find a function to print a string to file. Would somebody let > me know what function I should use? >I generally use writeLines() to print a string or vector of strings. -Charlie [[alternative HTML version deleted]]
?sink perhaps? --- On Sat, 12/19/09, Peng Yu <pengyu.ut at gmail.com> wrote:> From: Peng Yu <pengyu.ut at gmail.com> > Subject: [R] How to print to file? > To: r-help at stat.math.ethz.ch > Received: Saturday, December 19, 2009, 7:12 AM > I don't find a function to print a > string to file. Would somebody let > me know what function I should use? > > ______________________________________________ > 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. >