Does anyone know of a function that can create an lm object given a dataset and coefficients?
I\'m interested in this because I started playing with Bayesian model avera
It seems you can compute your lm
object as usual, and then modify the coefficients afterwards by modifying the $coefficients
attribute of your lm()
result.
See this question and results for more details :
http://tolstoy.newcastle.edu.au/R/e2/help/07/08/24294.html
Not sure it corresponds to what you want to do, though...