coef.glmfm {robust} | R Documentation |
Extract the model coefficients from a glmfm object.
## S3 method for class 'glmfm': coef(object, ...)
object |
a glmfm 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(breslow.dat) bres.fm <- fit.models(list(Robust = "glmRob", Classical = "glm"), formula = sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat) coef(bres.fm)