Hi,
I have created this plot:
using this code:
library(ggbeeswarm)
ggplot(data = dats2,
aes(x = sex, y = age)) +
theme_bw(base_size = 16) +
geom_quasirandom(col = "black", varwidth = TRUE, groupOnX = TRUE, alpha = 3/4, size = 2)
I would like to ask how to interpret this in relation to x axis and proximity to midline and 1.5 value ?
Sex variable is categorical: 1 = women, 2 = men
Age variable is numerical.
How to read this plot ?
What is the difference between points I have encirled in red ?