fs.mrmr | R Documentation |
Minimum Redundancy Maximal Relevancy
fs.mrmr(x, y, params = list(feature.number = 100))
x |
input data where columns are variables and rows are observations (all numeric) |
y |
decision variable as a boolean vector of length equal to number of observations |
params |
number of attributes to select. Must not exceed, feature.number there cannot be more than the number of columns |
Performs MRMR for feature selection
A data.frame
with selected features
## Not run:
decisions <- data$class
data$class <- NULL
fs.mrmr(data, decisions, params = list(feature.number = 100))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.