10.51 Feature Selection

20180726 The FSelector (Romanski, Kotthoff, and Schratz 2021) package provides functions to identify subsets of variables that might be more effective for modelling. We can use this (and other packages) to assist us in reducing the variables that will be useful in our modelling. As we find useful functionality we will add them to our standard template so that for our next dataset we have the functionality readily available.

We first use FSelector::cfs() to identify a good subset of variables using correlation and entropy. We then list the variable importance using FSelector::information.gain() to advise a useful subset of variables. Note that the stringi::%s+% operator is a convenience to concatenate strings together to produce a formula that indicates we will model the target variable using all of the other variables of the dataset.

% Do we need options(scipen=10) here - Tony does?

# Construct the formulation of the modelling we plan to do.

form <- formula(target %s+% " ~ .") %T>% print()
## rain_tomorrow ~ .
# Use correlation search to identify key variables.

cfs(form, ds[vars])
## [1] "rainfall"     "sunshine"     "humidity_3pm" "cloud_3pm"    "rain_today"
# Use information gain to identify variable importance.

information.gain(form, ds[vars])
##                 attr_importance
## min_temp            0.005779108
## max_temp            0.014389880
## rainfall            0.058553735
## evaporation         0.004417321
## sunshine            0.046122903
## wind_gust_dir       0.005363207
## wind_gust_speed     0.026509147
## wind_dir_9am        0.008688178
## wind_dir_3pm        0.004455052
## wind_speed_9am      0.004275411
## wind_speed_3pm      0.005234373
## humidity_9am        0.038621570
## humidity_3pm        0.113479581
## pressure_9am        0.027598964
## cloud_9am           0.031802179
## cloud_3pm           0.046793659
## rain_today          0.047030258

The two measures are consistent in this case in that the variables identified by FSelector::cfs() are the more important variables identified by FSelector::information.gain().

References

Romanski, Piotr, Lars Kotthoff, and Patrick Schratz. 2021. FSelector: Selecting Attributes. https://github.com/larskotthoff/fselector.


Your donation will support ongoing availability and give you access to the PDF version of this book. Desktop Survival Guides include Data Science, GNU/Linux, and MLHub. Books available on Amazon include Data Mining with Rattle and Essentials of Data Science. Popular open source software includes rattle, wajig, and mlhub. Hosted by Togaware, a pioneer of free and open source software since 1984. Copyright © 1995-2022 Graham.Williams@togaware.com Creative Commons Attribution-ShareAlike 4.0