2015-09-01 21 views

Antwort

3

Blick auf position_dodge, das width Argument mit Abstand helfen kann

mtcars$sep <- 1:2 # a factor 

ggplot(mtcars, aes(x=factor(carb), y=mpg, fill=factor(sep))) + 
    geom_boxplot(position=position_dodge(width=0.8)) 
Verwandte Themen