Learn R Programming

robust (version 0.3-0)

print.lmRob: Print Method for lmRob Objects

Description

Displays the call, coefficients, degrees of freedom, and the residual standard error in a fitted lmRob object.

Usage

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

Arguments

x
an lmRob 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

lmRob, lmRob.object.

Examples

Run this code
data(stack.dat)
stack.rob <- lmRob(Loss ~ ., data = stack.dat)
print(stack.rob)
print(stack.rob, digits = 3)

Run the code above in your browser using DataLab