powered by
Decision Forest algorithm: feature selection for two-class predictions, kept statistical significant features pass the t-test
DF_dataFs(X, Y, p_val = 0.05)
Training Dataset
Training Labels
Correlation Coefficient threshold to filter out high correlated features; default is 0.95
Keep_feat: qualified features in data matrix after filtering
# NOT RUN { ##data(iris) X = iris[iris[,5]!="setosa",1:4] Y = iris[iris[,5]!="setosa",5] used_feat = DF_dataFs(X, Y) # }
Run the code above in your browser using DataLab