Print method for elements of class "lmrob".
# S3 method for class 'lmrob'
print(x, digits = max(3, getOption("digits") - 3), ...)
Arguments
- x
an R object of class lmrob, typically created by
lmrob.
- digits
number of digits for printing, see digits in
options.
- ...
potentially more arguments passed to methods.
Examples
data(coleman)
( m1 <- lmrob(Y ~ ., data=coleman) ) # -> print.lmrob() method
#>
#> Call:
#> lmrob(formula = Y ~ ., data = coleman)
#> \--> method = "MM"
#> Coefficients:
#> (Intercept) salaryP fatherWc sstatus teacherSc motherLev
#> 30.50232 -1.66615 0.08425 0.66774 1.16778 -4.13657
#>