Re: [R] Exporting nlme summary

2010-08-06 Thread Ronald Wendt
Thanks for all the help. A nice and easy fix. On Thu, Aug 5, 2010 at 6:36 PM, David Winsemius wrote: > > On Aug 5, 2010, at 6:22 PM, Jun Shen wrote: > > I believe this has been discussed many times in the archives. Here is >> one way to do it. >> > > Yes, you are so right. > > >> Use function "s

Re: [R] Exporting nlme summary

2010-08-05 Thread David Winsemius
On Aug 5, 2010, at 6:22 PM, Jun Shen wrote: I believe this has been discussed many times in the archives. Here is one way to do it. Yes, you are so right. Use function "sink" to direct the output to a file you specify sink( file='your file.txt') after you execute this command, all the ou

Re: [R] Exporting nlme summary

2010-08-05 Thread Jun Shen
I believe this has been discussed many times in the archives. Here is one way to do it. Use function "sink" to direct the output to a file you specify >sink(file='your file.txt') after you execute this command, all the output will be saved to your file and you won't see it on the screen. Say >sum

[R] Exporting nlme summary

2010-08-05 Thread Ronald Wendt
I'm trying to export the results of my summary data for the object horton.nlme, but failing miserably. Running summary(horton.nlme) works fine, but both write.table and write.csv return the error "cannot coerce class 'c("summary.lme", "nlme", "lme")' into a data.frame". I know I can copy and past