disc.ef {dprep} | R Documentation |
Unsupervised discretization using intervals of equal frequencies
disc.ef(data, varcon, k)
data |
The dataset to be discretized |
varcon |
A vector containing the continuous features |
k |
The number of intervals to be used |
Returns a new data matrix with discretized values.
Edgar Acuna
Kantardzic M. (2003). Data Mining: Concepts, Models, methods, and Algorithms. John Wiley. New York.
#Discretization using the equal frequency method data(bupa) bupa.disc.ef=disc.ef(bupa,1:6,8)