ols_step_forward_aic {olsrr} | R Documentation |
Stepwise AIC forward regression
Description
Build regression model from a set of candidate predictor variables by entering predictors based on akaike information criterion, in a stepwise manner until there is no variable left to enter any more.
Usage
ols_step_forward_aic(model, ...)
## Default S3 method:
ols_step_forward_aic(
model,
include = NULL,
exclude = NULL,
progress = FALSE,
details = FALSE,
...
)
## S3 method for class 'ols_step_forward_aic'
plot(x, print_plot = TRUE, details = TRUE, digits = 3, ...)
Arguments
model |
An object of class |
... |
Other arguments. |
include |
Character or numeric vector; variables to be included in selection process. |
exclude |
Character or numeric vector; variables to be excluded from selection process. |
progress |
Logical; if |
details |
Logical; if |
x |
An object of class |
print_plot |
logical; if |
digits |
Number of decimal places to display. |
Value
List containing the following components:
model |
final model; an object of class |
metrics |
selection metrics |
others |
list; info used for plotting and printing |
References
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.
See Also
Other forward selection procedures:
ols_step_forward_adj_r2()
,
ols_step_forward_p()
,
ols_step_forward_r2()
,
ols_step_forward_sbc()
,
ols_step_forward_sbic()
Examples
# stepwise forward regression
model <- lm(y ~ ., data = surgical)
ols_step_forward_aic(model)
# stepwise forward regression plot
k <- ols_step_forward_aic(model)
plot(k)
# selection metrics
k$metrics
# extract final model
k$model
# include or exclude variables
# force variable to be included in selection process
ols_step_forward_aic(model, include = c("age"))
# use index of variable instead of name
ols_step_forward_aic(model, include = c(5))
# force variable to be excluded from selection process
ols_step_forward_aic(model, exclude = c("liver_test"))
# use index of variable instead of name
ols_step_forward_aic(model, exclude = c(4))
# include & exclude variables in the selection process
ols_step_forward_aic(model, include = c("age"), exclude = c("liver_test"))
# use index of variable instead of name
ols_step_forward_aic(model, include = c(5), exclude = c(4))