tadaatoolbox (version 0.16.1)

interval_labels: Convenience functions for interval recodes

Description

Get interval labels for even intervals of discrete numeric values compatible with base::cut.

Usage

interval_labels(from, to, width = 5)

Arguments

from, to

A numeric value for the beginning and the end of the interval.

width

The width of the interval, e.g. 5 (default) for intervals 0-5.

Value

A character vector of interval labels compatible with base::cut.

Examples

Run this code
# NOT RUN {
x       <- round(runif(100, 0, 100), 0)
labels  <- interval_labels(0, 100, 10)

cut(x, breaks = seq(0, 100, 10), labels = labels)
# }

Run the code above in your browser using DataCamp Workspace