print.glmRob {robust}R Documentation

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

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

[Package robust version 0.3-4 Index]