geom_half_point {gghalves} | R Documentation |
Points with jitter for half geoms.
Description
Points with jitter for half geoms.
Usage
geom_half_point(
mapping = NULL,
data = NULL,
stat = "HalfPoint",
position = "dodge2",
...,
side = "r",
transformation = position_jitter(),
range_scale = 0.75,
na.rm = FALSE,
show.legend = NA,
inherit.aes = TRUE
)
Arguments
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. There are three options: If A A |
stat |
The statistical transformation to use on the data for this layer, as a string. |
position |
Position adjustment, either as a string, or the result of a call to a position adjustment function. |
... |
Other arguments passed on to |
side |
The side on which to draw the half violin plot. "l" for left, "r" for right, defaults to "l". |
transformation |
An evaluated 'position_*()' function yielding a 'Position' object with specified parameters to calculate the transformation of the points. Defaults to 'ggplot2::position_jitter()'. |
range_scale |
If no 'width' argument is specified in 'transformation', 'range_scale' is used to determine the width of the jitter. Defaults to '0.75', which is half of the allotted space for the jitter-points, whereas '1' would use all of the allotted space. |
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
Examples
ggplot(iris, aes(x = Species, y = Petal.Width, fill = Species)) +
geom_half_point()
ggplot(iris, aes(x = Species, y = Petal.Width, fill = Species)) +
geom_half_point(side = "l")