drop_var_low_variance | R Documentation |
Drop all variables with low variance
drop_var_low_variance(data, max_prop = 0.99)
data |
Data frame |
max_prop |
Maximum proportion of values without variance |
Data frame
data <- data.frame(a = 1:100, b = c(0, rep(1, 99)))
drop_var_low_variance(data, max_prop = 0.9)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.