Learn R Programming

robust (version 0.3-19)

print.glmRob: Print Method for glmRob Objects

Description

Displays the call, coefficients, degrees of freedom, and the residual deviance in a fitted glmRob object.

Usage

## S3 method for class 'glmRob':
print(x, ...)

Arguments

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.

Value

  • x is invisibly returned.

See Also

glmRob, glmRob.object.

Examples

Run this code
data(breslow.dat)
bres.rob <- glmRob(sumY ~ Age10 + Base4*Trt, family = poisson(), data = breslow.dat)
print(bres.rob)
print(bres.rob, digits = 3)

Run the code above in your browser using DataLab