Learn R Programming

robust (version 0.3-19)

print.summary.glmRob: Print Method for summary.glmRob Objects

Description

Displays the call, quartiles of the deviance residuals, an anova table for the coefficients, the dispersion parameter, null deviance, residual deviance, and degrees of freedom. If the summary.glmRob object contains a correlation matrix for the coefficients it will be displayed as well.

Usage

## S3 method for class 'summary.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)
bres.sum <- summary(bres.rob)
print(bres.sum)
print(bres.sum, digits = 4)

Run the code above in your browser using DataLab