| geom_crossbar {ggplot2} | R Documentation |
Hollow bar with middle indicated by horizontal line
geom_crossbar(mapping = NULL, data = NULL, stat = "identity",
position = "identity", fatten = 2, ...)
mapping |
mapping between variables and aesthetics generated by aes |
data |
dataset used in this layer, if not specified uses plot dataset |
stat |
statistic used by this layer |
position |
position adjustment used by this layer |
fatten |
a multiplicate factor to fatten middle bar by |
... |
other arguments |
This page describes geom\_crossbar, see layer and qplot for how to create a complete plot from individual components.
A layer
The following aesthetics can be used with geom\_crossbar. Aesthetics are mapped to variables in the data with the aes function: geom\_crossbar(aes(x = var))
x: x position (required)
y: y position (required)
ymin: bottom (vertical minimum) (required)
ymax: top (vertical maximum) (required)
colour: border colour
fill: internal colour
size: size
linetype: line type
alpha: transparency
Hadley Wickham, http://had.co.nz/
## Not run: # See geom_linerange for examples ## End(Not run)