Description Usage Arguments Details Value Examples
View source: R/feature.boruta.R
The method checks a Boruta object for the decision status by checking
if some variables are still tentative.
1 | feature.boruta.tentative(boruta)
|
boruta |
|
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.
boolean value that is TRUE as soon as one tentative
variable is found. FALSE otherwise.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.