powered by
Convert numeric or interval cuts to simple and pretty labels.
interval_labels(cuts, digits = NULL, right_closed = TRUE)
A vector or numeric or character interval cuts.
If cuts are numeric, the number of decimal places to round labels to.
If cuts are numeric, TRUE or FALSE of whether intervals are to be right-closed. Defaults to TRUE.
A vector of character labels.
# NOT RUN { library(simplevis) interval_labels(c(0, 0.1, 3, 4.1, 7, 100, Inf)) interval_labels(c("(0, 10]", "(10, 50]", "(50, 100]")) interval_labels(c("[0, 10)", "[10, 50)", "[50, 100)")) # }
Run the code above in your browser using DataLab