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)
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
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()
> 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
--
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
5 matches
Mail list logo