This function transforms a quantitative variable into a qualitative one by breaking it into classes with the same frequencies.
quant.cut(var, nbclass, include.lowest = TRUE, right = FALSE, dig.lab = 5, ...)
variable to transform
number of classes
argument passed to the cut
function
argument passed to the cut
function
argument passed to the cut
function
arguments passed to the cut
function
The result is a factor.
This is just a simple wrapper around the cut
and quantile
functions.