print.glmfm {robust} | R Documentation |
Displays the calls, coefficient estimates and residual deviance estimates for the glm and/or glmRob objects contained in a glmfm object.
## S3 method for class 'glmfm': print(x, ...)
x |
a glmfm object. |
... |
additional arguments required by the generic print function. In particular the 'digits' argument is useful for specifying the number of significant digits when displaying numeric output. |
x
is invisibly returned.
fit.models
,
glmRob
,
glm
,
print
.
data(breslow.dat) bres.fm <- fit.models(list(Robust = "glmRob", Classical = "glm"), formula = sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat) print(bres.fm) print(bres.fm, digits = 4)