Takes in a data frame which contains only Quantitative varables in columns. Standadize the variables.
Discretize quantitative variables and returns discretized quantitative variables. Discretization was performed by
equal width bining algorithm.
Usage
discretizeQuant(myDataQuant, noice = TRUE)
Arguments
myDataQuant
A data frame which includes quantitative variables in columns.
noice
Noice indicator. If noice = TRUE data standerdization is done by
deviding the difference between data point and median of the variable by the range of the variable.
If noice = FALSE data standerdization is done by deviding the difference between data point and
mean of the variable by the standard deviation of the variable.
Value
A data frame consists of discretized quantitative variables.