print.summary.glmfm {robust} | R Documentation |
Displays a side-by-side comparison of the summaries in a summary.glmfm object.
## S3 method for class 'summary.glmfm': print(x, ...)
x |
a summary.glmfm object. |
... |
additional arguments required by the generic print function. |
x
is invisibly returned.
data(breslow.dat) bres.fm <- fit.models(list(Robust = "glmRob", Classical = "glm"), formula = sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat) bres.sum <- summary(bres.fm) print(bres.sum) print(bres.sum, digits = 4)