boxplot

作者: 一路向前_莫问前程_前程似锦 | 来源:发表于2020-07-07 14:41 被阅读0次
image.png
ggplot(ToothGrowth, aes(x=dose, y=len,color=supp)) +
  geom_boxplot(position=position_dodge(1))+
  scale_color_manual(values=c("red", "blue"))+
  geom_jitter(aes(x=xpos),width=.2, alpha=.5)
 

相关文章

网友评论

      本文标题:boxplot

      本文链接:https://www.haomeiwen.com/subject/huiaqktx.html