View source: R/model-feature-selection.R
featsel_brute_force | R Documentation |
An iterative process to eliminate variables by confidence interval or sign term
featsel_brute_force(model, level = 0.95, verbose = TRUE)
model |
model |
level |
the confidence level used to calculate the confidence interval |
verbose |
Default set to TRUE. |
data("credit_woe")
m <- glm(bad ~ ., family = binomial, data = credit_woe)
m_featsel <- featsel_brute_force(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.