Build a Model in a Stepwise Fashion
Performs stepwise model selection on a robustly fitted linear model. Presently only the backward stepwise procedure is implemented.
step.lmRob(object, scope, scale, direction = c("both", "backward", "forward"), trace = TRUE, keep = NULL, steps = 1000, fast = FALSE, ...)
object |
an |
scope |
either a formula or a list with elements |
scale |
a single numeric value containing a residual scale estimate. If missing, the scale estimate in |
direction |
a character value specifying the mode of stepwise search. The possibilities are "both", "backward", and "forward", with a default of "backward". Presently only "backward" stepwise searches are implemented. |
trace |
a logical value. If |
keep |
a filter function whose input is a fitted model object and the associated AIC statistic, and whose output is arbitrary. Typically keep will select a subset of the components of the object and return them. The default is not to keep anything. |
steps |
an integer value specifying the the maximum number of steps to be considered. The default is 1000 (essentially as many as required). It is typically used to stop the process early. |
fast |
a logical value. If |
... |
additional arguments required by the generic step function. |
Presently only backward stepwise selection is supported. During each step the Robust Final Prediction Error (as computed by the function lmRob.RFPE
) is calculated for the current model and for each sub-model achievable by deleting a single term. The function then either steps to the sub-model with the lowest Robust Final Prediction Error or, if the current model has the lowest Robust Final Prediction Error, terminates. The scale estimate from object
is used to compute the Robust Final Prediction Error throughout the procedure unless the scale
argument is provided in which case the user specified value is used.
the model with the lowest Robust Final Prediction Error encountered during the stepwise procedure is returned. Additionally, an anova
element corresponding to the steps taken in the search is appended to the returned object. If a keep
function was provided then the kept values can be found in the keep
element of the returned object.
data(stack.dat) stack.rob <- lmRob(Loss ~ ., data = stack.dat) ## The default behavior is to try dropping all terms ## step.lmRob(stack.rob) ## Keep Water.Temp in the model ## my.scope <- list(lower = . ~ Water.Temp, upper = . ~ .) step.lmRob(stack.rob, scope = my.scope)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.