2015-09-01 14 views

cevap

3

Bak position_dodge de, width argüman aralığı ile yardımcı olabilir ederiz

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))