print.glmRob {robust} | R Documentation |
Displays the call, coefficients, degrees of freedom, and the residual deviance in a fitted glmRob object.
## S3 method for class 'glmRob': print(x, ...)
x |
a glmRob 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.
data(breslow.dat) bres.rob <- glmRob(sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat) print(bres.rob) print(bres.rob, digits = 3)