
Selects columns from input data based on the highest RIs of attributes.
prune.data(x, mcfs_result, size = NA)
data.frame with selected columns.
input data.frame.
result from mcfs
function.
number of top features to select from input data. If size = NA
, then it is defined by
mcfs_result$cutoff_value
parameter.
if (FALSE) ###dontrunbegin
# create input data
adata <- artificial.data(rnd_features = 10)
showme(adata)
# Parametrize and run MCFS-ID procedure
result <- mcfs(class~., adata, cutoffPermutations = 0, featureFreq = 10,
finalCV = FALSE, finalRuleset = FALSE, threadsNumber = 2)
head(prune.data(adata, result, size = result$cutoff_value))
###dontrunend
Run the code above in your browser using DataLab