geom_half_point_panel {gghalves} | R Documentation |
Points with jitter for half geoms. Unlike 'geom_half_point', 'geom_half_point_panel' does not dodge different grouping aesthetics. This allows multiple groups in a single cloud of points (see examples).
Description
Points with jitter for half geoms. Unlike 'geom_half_point', 'geom_half_point_panel' does not dodge different grouping aesthetics. This allows multiple groups in a single cloud of points (see examples).
Usage
geom_half_point_panel(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
...,
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(y = Sepal.Width)) +
geom_half_boxplot() +
geom_half_point_panel(aes(x = 0.5, color = Species), range_scale = .5) +
theme_classic()