ggplot2 (version 0.9.1)

cut_interval: Cut numeric vector into intervals of equal length.

Description

Cut numeric vector into intervals of equal length.

Usage

cut_interval(x, n = NULL, length = NULL, ...)

Arguments

x
numeric vector
n
number of intervals to create, OR
length
length of each interval
...
other arguments passed on to cut

See Also

cut_number

Examples

Run this code
table(cut_interval(1:100, n = 10))
table(cut_interval(1:100, n = 11))
table(cut_interval(1:100, length = 10))

Run the code above in your browser using DataCamp Workspace