Re: [R] Storing the linear model object

2011-11-30 Thread R. Michael Weylandt
If you mean storing it within one session, it's just like any other object m <- lm(...) and it can be put in lists, modified, whatever just like any other object. Michael On Nov 30, 2011, at 4:23 AM, Diane Bailleul wrote: > Good morning, > Normally, if you save your R environment, some objec

Re: [R] Storing the linear model object

2011-11-30 Thread Diane Bailleul
Good morning, Normally, if you save your R environment, some objects, like your lm, must be saved in with. Otherwise, have you tried save() or dput() functions ? Le 11/30/2011 6:10 AM, arunkumar a écrit : Hi Please let me know if we can store the linear model object in the data base an

[R] Storing the linear model object

2011-11-29 Thread arunkumar1111
Hi Please let me know if we can store the linear model object in the data base and retrive the object and output from them Data<- read.csv("C:/FE and RE.csv") Formula="Y~X2+X3+X4 lmobject = lm(formula=Formula,data=Data) can i store the lm object in the database and and is it possible to retri