I would like to know how to save a fit from a previous R session.
For example, imagine today i run :
fit <- lm( Y ~ X1 + X2, data = DATA)
and i want to save it somewhere to call directly fit without running the regression. What is the best choice?
Thank you.