bin_vector {ggvis} | R Documentation |
Bin vectors
Description
A generic and several implementations for binning vectors.
Usage
bin_vector(x, weight = NULL, ...)
## S3 method for class 'numeric'
bin_vector(
x,
weight = NULL,
...,
width = 1,
origin = 0,
closed = c("right", "left"),
pad = FALSE
)
Arguments
x |
A vector to bin |
weight |
If specified, an integer vector of the same length as |
... |
additional arguments passed through to methods. |
width |
The width of a bin |
origin |
The left-most value for bins. |
closed |
One of |
pad |
A logical indicating whether the bins should be padded to include an empty bin on each side. |
[Package ggvis version 0.4.9 Index]