Selects the features whose evaluation is over/under a user given threshold (It depends on the method that generates the evaluation measure. For example: under for regression methods, over for classification methods, etc.). Features that do not satisfy the threshold, will be removed
# NOT RUN {## Select Threshold for iris dataset (filter method)# Features with a evaluation measure higher than 0.7selectThreshold(iris, 'Species', mutualInformation, 0.7)
# }