summary.forwardSearch_regL1 {diagL1} | R Documentation |
Summarizing Fit of Forward Search in Linear L1 Regression
Description
Returns a summary list for a forward search in linear L1 regression fit.
Usage
## S3 method for class 'forwardSearch_regL1'
summary(object, steps = "auto", ...)
Arguments
object |
Object returned from forwardSearch_regL1. |
steps |
the number of forward steps to show. |
... |
Optional arguments. |
Value
No return value, called for side effects.
References
Atkinson, A.C. and Riani, M. (2000). Robust Diagnostic Regression Analysis. New York: Springer.
See Also
forwardSearch_regL1
for apply forward search in linear L1 regression model.
Examples
# applies the forward search approach to robust analysis in a linear L1 model
mod = forwardSearch_regL1(Concentration ~ Age, data = bile)
summary(mod)
[Package diagL1 version 1.0.0 Index]