Split a numeric variable into a number of bins and return a vector of bin numbers
xtile(x, n = 5, rev = FALSE, type = 7)
Numeric variable
number of bins to create
Reverse the order of the bin numbers
An integer between 1 and 9 to select one of the quantile algorithms described in the help for the stats::quantile function
See quantile for a description of the different algorithm types
# NOT RUN {
xtile(1:10, 5)
xtile(1:10, 5, rev = TRUE)
xtile(c(rep(1, 6), 7:10), 5)
# }
Run the code above in your browser using DataLab