Description Usage Arguments Examples
View source: R/feature_selection.R
Perform a very raw Feature Selection
1 2  | feature_selection_raw(data, target = TARGET,
  max_concentration_limit = 0.9, min_iv = 0.2, verbose = TRUE, ...)
 | 
data | 
 A data frame to perform the feature selection.  | 
target | 
 The target.  | 
max_concentration_limit | 
 A maximum concentration limit.  | 
min_iv | 
 Minimum Information Value to accpet  | 
verbose | 
 verbose.  | 
... | 
 Additional parameters for   | 
1 2 3 4 5  | data("german_credit")
fs <- feature_selection(german_credit, good_bad, max_concentration_limit = 0.4, min_iv = 0.1)
table(fs$decision)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.