View source: R/model-feature-selection.R
featsel_loss_function_permutations | R Documentation |
Shortcut featsel_loss_function_permutations
featsel_loss_function_permutations(
model,
stat = function(x) quantile(x, 0.25),
iterations = 100,
...
)
model |
model |
stat |
= c("median", "mean", "min", "q25", "q75", "max"), |
iterations |
Default 100. |
... |
Additional arguments for celavi::feature_selection |
data("credit_woe")
m <- glm(bad ~ ., family = binomial, data = credit_woe)
m_featsel <- featsel_loss_function_permutations(m, stat = min, iterations = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.