Given a set of predictors and a target that is to be predicted, this search
will run the gamma test on every combination of the inputs. It returns the
results in order of increasing gamma, so the best combinations of inputs for
prediction will be at the beginning of the list. As this is a fully
combinatoric search, it will start to get slow beyond about 16 inputs. By default,
fe_search
will display a progress bar showing the time to completion.
fe_search()
returns a data.frame with two columns: Gamma, a sorted vector of
Gamma values, and mask, an integer column containing the masks representing the inputs
used to calculate each Gamma. To reconstruct the predictor set for a Gamma,
use its mask with int_to_intMask and select_by_mask as shown in their examples.