View source: R/ols-stepwise-backward-regression.R
ols_step_backward_p | R Documentation |
Build regression model from a set of candidate predictor variables by removing predictors based on p values, in a stepwise manner until there is no variable left to remove any more.
ols_step_backward_p(model, ...)
## Default S3 method:
ols_step_backward_p(
model,
p_val = 0.3,
include = NULL,
exclude = NULL,
hierarchical = FALSE,
progress = FALSE,
details = FALSE,
...
)
## S3 method for class 'ols_step_backward_p'
plot(x, model = NA, print_plot = TRUE, details = TRUE, ...)
model |
An object of class |
... |
Other inputs. |
p_val |
p value; variables with p more than |
include |
Character or numeric vector; variables to be included in selection process. |
exclude |
Character or numeric vector; variables to be excluded from selection process. |
hierarchical |
Logical; if |
progress |
Logical; if |
details |
Logical; if |
x |
An object of class |
print_plot |
logical; if |
ols_step_backward_p
returns an object of class "ols_step_backward_p"
.
An object of class "ols_step_backward_p"
is a list containing the
following components:
model |
final model; an object of class |
metrics |
selection metrics |
Chatterjee, Samprit and Hadi, Ali. Regression Analysis by Example. 5th ed. N.p.: John Wiley & Sons, 2012. Print.
Other backward selection procedures:
ols_step_backward_adj_r2()
,
ols_step_backward_aic()
,
ols_step_backward_r2()
,
ols_step_backward_sbc()
,
ols_step_backward_sbic()
# stepwise backward regression
model <- lm(y ~ ., data = surgical)
ols_step_backward_p(model)
# stepwise backward regression plot
model <- lm(y ~ ., data = surgical)
k <- ols_step_backward_p(model)
plot(k)
# selection metrics
k$metrics
# final model
k$model
# include or exclude variables
# force variable to be included in selection process
ols_step_backward_p(model, include = c("age", "alc_mod"))
# use index of variable instead of name
ols_step_backward_p(model, include = c(5, 7))
# force variable to be excluded from selection process
ols_step_backward_p(model, exclude = c("pindex"))
# use index of variable instead of name
ols_step_backward_p(model, exclude = c(2))
# hierarchical selection
model <- lm(y ~ bcs + alc_heavy + pindex + age + alc_mod, data = surgical)
ols_step_backward_p(model, 0.1, hierarchical = TRUE)
# plot
k <- ols_step_backward_p(model, 0.1, hierarchical = TRUE)
plot(k)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.