1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/layer_bins.R
\name{layer_histograms}
\alias{layer_histograms}
\alias{layer_freqpolys}
\title{Display binned data}
\usage{
layer_histograms(
vis,
...,
width = NULL,
center = NULL,
boundary = NULL,
closed = c("right", "left"),
stack = TRUE,
binwidth
)
layer_freqpolys(
vis,
...,
width = NULL,
center = NULL,
boundary = NULL,
closed = c("right", "left"),
binwidth
)
}
\arguments{
\item{vis}{Visualisation to modify}
\item{...}{Visual properties used to override defaults.}
\item{width}{The width of the bins. The default is \code{NULL}, which yields
30 bins that cover the range of the data. You should always override this
value, exploring multiple widths to find the best to illustrate the stories
in your data.}
\item{center}{The center of one of the bins. Note that if center is above or
below the range of the data, things will be shifted by an appropriate
number of \code{width}s. To center on integers, for example, use
\code{width=1} and \code{center=0}, even if \code{0} is outside the range
of the data. At most one of \code{center} and \code{boundary} may be
specified.}
\item{boundary}{A boundary between two bins. As with \code{center}, things
are shifted when \code{boundary} is outside the range of the data. For
example, to center on integers, use \code{width = 1} and \code{boundary =
0.5}, even if \code{1} is outside the range of the data. At most one of
\code{center} and \code{boundary} may be specified.}
\item{closed}{One of \code{"right"} or \code{"left"} indicating whether right
or left edges of bins are included in the bin.}
\item{stack}{If \code{TRUE}, will automatically stack overlapping bars.}
\item{binwidth}{Deprecated; use \code{width} instead.}
}
\description{
Display binned data
}
\examples{
# Create histograms and frequency polygons with layers
mtcars \%>\% ggvis(~mpg) \%>\% layer_histograms()
mtcars \%>\% ggvis(~mpg) \%>\% layer_histograms(width = 2)
mtcars \%>\% ggvis(~mpg) \%>\% layer_freqpolys(width = 2)
# These are equivalent to combining compute_bin with the corresponding
# mark
mtcars \%>\% compute_bin(~mpg) \%>\% ggvis(~x_, ~count_) \%>\% layer_paths()
# With grouping
mtcars \%>\% ggvis(~mpg, fill = ~factor(cyl)) \%>\% group_by(cyl) \%>\%
layer_histograms(width = 2)
mtcars \%>\% ggvis(~mpg, stroke = ~factor(cyl)) \%>\% group_by(cyl) \%>\%
layer_freqpolys(width = 2)
}
\seealso{
\code{\link{layer_bars}} For bar graphs of counts at each unique
x value, in contrast to a histogram's bins along x ranges.
}
|