How do I assign a variable to R output that is generated by default functions such as: stat.desc(mydata, basic=TRUE, desc=TRUE, norm=FALSE, p=0.90) summary(mydata) Another way to put it: how can I turn an R function result into an object? -- View this message in context: http://r.789695.n4.nabble.com/make-stat-desc-output-an-object-tp4668142.html Sent from the R help mailing list archive at Nabble.com. [[alternative HTML version deleted]]
On 28-05-2013, at 19:31, bcrombie <bcrombie at utk.edu> wrote:> How do I assign a variable to R output that is generated by default functions such as: > stat.desc(mydata, basic=TRUE, desc=TRUE, norm=FALSE, p=0.90) > summary(mydata) > Another way to put it: how can I turn an R function result into an object? >?capture.output Berend