美文网首页统计与科研
为什么你画的ggplot2箱线图没横线 哈哈

为什么你画的ggplot2箱线图没横线 哈哈

作者: 小洁忘了怎么分身 | 来源:发表于2020-04-14 19:21 被阅读0次

    不知道大家有木有发现,基础包画箱线图是这样的:

    boxplot(iris$Sepal.Length~iris$Species)
    

    它是一张有横线的图。
    而用ggplot2作图时,莫得感情,莫得横线😕。

    library(ggplot2)
    ggplot(data = iris,aes(x = Species,y = Sepal.Length))+
      geom_boxplot( width = 0.3)
    

    能不能把横线加上,能啊,搜。

    顺便把颜色也加上好了。

    ggplot(data = iris,aes(x = Species,y = Sepal.Length,fill = Species))+
      stat_boxplot(geom ='errorbar', width = 0.3)+
      geom_boxplot( width = 0.3)
    

    参考代码:https://stats.stackexchange.com/questions/8137/how-to-add-horizontal-lines-to-ggplot2-boxplot

    相关文章

      网友评论

        本文标题:为什么你画的ggplot2箱线图没横线 哈哈

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