Take data produced by input and determine the most predictive
features (with respect to the best algorithm).
Usage
featureFilter(filter, data)
Arguments
filter
the filtering algorithm to use. Must accept a formula of the values to predict
and a data frame with features. Return value should be the list of selected
features.
data
the data to use. The structure returned by input.
Value
featureslist of the most predictive features.
original_featuresthe list of the orignal features.
Runs the specified feature filtering algorithm on the data set with all
features. The subset of the features chosen by the filter are saved in the
features member, the old features (i.e. the full feature set) in
original_features. The data structure modified like this is returned.