coef.lmfm {robust} | R Documentation |
Extract the model coefficients from an lmfm object.
## S3 method for class 'lmfm': coef(object, ...)
object |
an lmfm object. |
... |
additional arguments required by the generic coef function. |
a numeric matrix with one row for each model in object
and one column for each coefficient in the model.
data(stack.dat) stack.fm <- fit.models(list(Robust = "lmRob", LS = "lm"), Loss ~ ., data = stack.dat) coef(stack.fm)