feature.boruta.tentative: Check For Tentative Variables

Description Usage Arguments Details Value Examples

View source: R/feature.boruta.R

Description

The method checks a Boruta object for the decision status by checking if some variables are still tentative.

Usage

1

Arguments

boruta

Boruta object obtained by the execution of feature.boruta method.

Details

This method evaluates the Boruta object. In case some other object is provided to the function it will abort with an error. All correctly assigned objects will then be checked for variables that still have the tentative status. If at least one is still tentative a TRUE will be returned.

Value

boolean value that is TRUE as soon as one tentative variable is found. FALSE otherwise.

Examples

1
2
3
4
5
6
 boruta <- KaggleHouse:::feature.boruta(
   target = data_train_na$SalePrice, predictors = data_train_na[-81],
    fixNA = T, roughFix = T, verbose = T
 )

 KaggleHouse:::feature.boruta.tentative(boruta)

MarcoNiemann/kaggle_house documentation built on May 7, 2019, 2:50 p.m.