chop_evenly {santoku} | R Documentation |
Chop into equal-width intervals
Description
chop_evenly()
chops x
into intervals
intervals of equal width.
Usage
chop_evenly(x, intervals, ..., close_end = TRUE)
brk_evenly(intervals)
tab_evenly(x, intervals, ...)
Arguments
x |
A vector. |
intervals |
Integer: number of intervals to create. |
... |
Passed to |
close_end |
Logical. Close last break at right? (If |
Details
chop_evenly()
sets close_end = TRUE
by default.
Value
chop_*
functions return a factor
of the same length as x
.
brk_*
functions return a function
to create breaks
.
tab_*
functions return a contingency table()
.
See Also
Other chopping functions:
chop()
,
chop_equally()
,
chop_fn()
,
chop_mean_sd()
,
chop_n()
,
chop_proportions()
,
chop_quantiles()
,
chop_width()
,
fillet()
Examples
chop_evenly(0:10, 5)
[Package santoku version 1.0.0 Index]