Is there a way to \'compress\' an object of class lm, so that I can save it to the disk and load it up later for use with predict.lm?
I have an lm object that ends u
Turns out I solved my own problem. Using the following:
model<-lm(form,data=ct,model=FALSE,x=FALSE,y=FALSE)
reduced the size of my model substantially.