Description Usage Arguments Value Examples
View source: R/feature_select.R
Performs forward selection of features in the data by starting with an empty model, and iteratively adds features that improve the model's score. The algorithm stops once the decrease of the accuracy from an additional features is bigger than the threshold.
1 | feature_select(X_train, y_train, threshold = 0.05)
|
X_train |
The training set of the data |
y_train |
The target of the training set data |
threshold |
user input threshold used for bounding features selected |
List of best features
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.