ggplot увеличить расстояние между boxplots

Как я могу избежать прикрепленных графиков? Спасибо

ggplot(df, aes(x=factor(time), y=val, fill=ID))+
geom_boxplot()+
scale_fill_manual(values=c(WT="goldenrod3", KO="steelblue"))

enter image description here

1 ответов


посмотреть position_dodge на width аргумент может помочь с интервалом

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