gpt4 book ai didi

r - ggplot geom_jitter 落后于(多个)geom_boxplot

转载 作者:行者123 更新时间:2023-12-02 20:47:55 24 4
gpt4 key购买 nike

我使用以下代码:

data(mtcars)
ggplot(mtcars, aes(x=factor(cyl), y=mpg)) +
geom_jitter(aes(colour=factor(gear)), width = 0.1) +
geom_boxplot(aes(fill=factor(gear)), alpha=0.6)

结果如下: enter image description here

但我想要来自 geom_jitter 的彩色点直接位于相应的(!)箱线图后面。有办法做到吗?

最佳答案

解决方案是aosmith及其链接提到的position_jitterdodge。

library(ggplot2)

data(mtcars)
ggplot(mtcars, aes(x=factor(cyl), y=mpg, fill=factor(gear), colour=factor(gear))) +
geom_point(position = position_jitterdodge()) +
geom_boxplot(alpha=0.6)

结果如下: enter image description here

关于r - ggplot geom_jitter 落后于(多个)geom_boxplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43497528/

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