HOFS | R Documentation |
HOFS( data, label, C = 0.2, Nfeatures = 10, samplePct = 0.1, verbose = F, seed = 666 )
data |
Data.frame with the invesigated features. |
label |
Column with the target feature. |
C |
Predefined constant C, assessing whether create new subset. |
Nfeatures |
Nunber of features to be selected. |
samplePct |
Percentage of observations that are sampled to speed up the computation. |
verbose |
Switch for tracing selection. |
seed |
Seed for Pseudo-Random Number Generator. |
List with the selected features along with the coresponding rank.
library("HOFS") data(iris) Results <- HOFS( data = iris[ , -5 ], label = iris[ , 5, drop = F ], Nfeatures = 4 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.