View source: R/selectIndividualFeatures.R
| selectThresholdRange | R Documentation |
Generates a direct search function that selects the features whose evaluation is over a threshold, where this threshold is given as: (((min - max) * p.threshold) + max)(The features evaluation is individual). This function is called internally within the directSearchAlgorithm function.
selectThresholdRange(p.threshold = 0.8)
p.threshold |
|
Returns a direct search function that is used in the feature selection process.
Adan M. Rodriguez
Francisco Aragón Royón
## The direct application of this function is an advanced use that consists of using this
# function directly and performing a direct search process
## Classification problem
# Generates the filter evaluation function
filter_evaluator <- filterEvaluator('IEConsistency')
# Generates the direct search function with threshold range
str_direct_search <- selectThresholdRange()
# Performs the direct search process directly (parameters: dataset, target variable and evaluator)
str_direct_search(iris, 'Species', filter_evaluator)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.