Description Usage Arguments Details Value Examples
View source: R/feature.boruta.R
This method combines the features that have either been confirmed or have been marked as tentative in the Boruta algorithm into one variable.
1  | feature.boruta.selected(boruta)
 | 
boruta | 
 The   | 
This method usually is not meant to be applied by a package user. In case it
is still used to obtain the confirmed and tentative variables of a
Boruta object it has to be ensured that it has the variables
Confirmed and Tentative. These can be obtained via the
variables switch of the feature.boruta.comp method that
has to be TRUE.
Then the features contained in both variables will be combined into a
Selected variable. Finally the method binds the Selected
variable to the .GlobalEnv as features_boruta.
Boruta object with an attached Selected variable
containing the confirmed and tentative features.
1 2 3 4 5  |  boruta <- KaggleHouse:::feature.boruta(
   target = data_train_na$SalePrice, predictors = data_train_na[-81],
    fixNA = T, roughFix = F, variables = T, verbose = T
 )
 KaggleHouse:::feature.boruta.selected(boruta)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.