geom_boxjitter | R Documentation |
see tidyExt vignette
geom_boxjitter(
...,
point_size = 0.5,
point_col = "black",
box_alpha = 1,
jitterheight = 0,
jitterwidth = 0.25
)
point_size |
size of points; default is 0.5 |
point_col |
point colour; default is black |
box_alpha |
alpha for boxplot background ; default is 1 |
jitterheight |
jitter height; default is 0 |
jitterwidth |
jitter width; default is 0.25 |
A ggplot.
require(ggplot2)
mpg |> ggplot2::ggplot(aes(x=class, y=cty)) +
geom_boxjitter(notch = FALSE, point_size = 2, point_col='dodger blue')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.