i use following code:
data(mtcars)
ggplot(mtcars, aes(x=factor(cyl), y=mpg)) +
geom_jitter(aes(colour=factor(gear)), width = 0.1) +
geom_boxplot(aes(fill=factor(gear)), alpha=0.6)
But i want the colored dots from geom_jitter directly behind the corresponding(!) boxplot. Is there a way to do it?