gpt4 book ai didi

r - 使用 ggplot2 在分组箱线图中过度绘制平均点

转载 作者:行者123 更新时间:2023-12-04 06:20:03 24 4
gpt4 key购买 nike

我有一个像这样 ggplot2 的分组箱线图

p <- qplot(factor(cyl), mpg, data=mtcars, geom="boxplot", fill=factor(gear)) 

我想 overdraw 平均点。我试过这个
p+ stat_summary(fun.y=mean, colour="red", geom="point")

但是,我没有得到每组框的平均分。
enter image description here

我该怎么做才能得到这个?

最佳答案

您应该将位置设置为 position_dodge()width到 0.75 - 所以点的放置方式与箱线图相同。

qplot(factor(cyl), mpg, data=mtcars, geom="boxplot", fill=factor(gear)) +
stat_summary(fun.y=mean, colour="red",
geom="point",position=position_dodge(width=0.75))

关于r - 使用 ggplot2 在分组箱线图中过度绘制平均点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18532978/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com