Re: [R] how to store lme/lmer fit result

2011-03-03 Thread tingtingzhan
Hi All, I'm experiencing difficulties in saving a model fit by gls(). Basically if I just save() a gls object "gls.fit" in my workspace into an .RData file and later reload this .RData file, I get error when running script such as summary(gls.fit)$coefficients Dr. Bates's reply (quoted below)

Re: [R] how to store lme/lmer fit result

2008-11-03 Thread Douglas Bates
On Thu, Oct 9, 2008 at 8:51 PM, liujb <[EMAIL PROTECTED]> wrote: > Dear R users, > I am building a hierarchical model on a large data set. It can take quite > some time to finish one fit, I was just wondering whether it is possible to > store the fit object (the result) to a file for later (offli

Re: [R] how to store lme/lmer fit result

2008-11-03 Thread Christoph Scherber
Dear Julia, I think the best thing to do is to save your workspace, including all your objects. This works conveniently using the drop-down menu on Windows. Alternatively, you can use sink(), for example using the Windows clibboard: sink("clipboard") summary(...) # your object(s) here sink()

Re: [R] how to store lme/lmer fit result

2008-10-10 Thread Richard . Cotton
> I am building a hierarchical model on a large data set. It can take quite > some time to finish one fit, I was just wondering whether it is possible to > store the fit object (the result) to a file for later (offline) analysis. See ?save. Regards, Richie. Mathematical Sciences Unit HSL --

Re: [R] how to store lme/lmer fit result

2008-10-09 Thread Dieter Menne
liujb yahoo.com> writes: > I am building a hierarchical model on a large data set. It can take quite > some time to finish one fit, I was just wondering whether it is possible to > store the fit object (the result) to a file for later (offline) analysis. Like with any other R object, you can u