Learn R Programming

Dforest (version 0.4.2)

DF_dataPre: Decision Forest algorithm: Data pre-processing

Description

Decision Forest algorithm: Data pre-processing, remove All-Zero columns/features and high correlated features

Usage

DF_dataPre(X, thres = 0.95)

Arguments

X

Training Dataset

thres

Correlation Coefficient threshold to filter out high correlated features; default is 0.95

Value

Keep_feat: qualified features in data matrix after filtering

Examples

Run this code
# NOT RUN {
 ##data(iris)
  X = iris[,1:4]
  Keep_feat = DF_dataPre(X)
# }

Run the code above in your browser using DataLab