gpt4 book ai didi

r - R中的ggplot2聚类

转载 作者:行者123 更新时间:2023-12-04 21:57:42 25 4
gpt4 key购买 nike

有人能给我指出正确的方向来制作这样一个带有 ggplot2 的情节吗?甚至只是函数类型。

我一直在 ggplot2 中四处寻找,找不到这样的东西。

最佳答案

我假设情节的基本特征是:a.) x 轴是分类的,并且b.) 点的 x 位置略有变化,c.) 一些汇总统计数据(我使用中位数)。如果这就是您要找的,

require(ggplot2)
require(plyr)

#define the data
lev <- gl(2, 10, 20, labels=c("I", "II"))
y <- runif(20)
df <- data.frame(lev, y)

#calculate the medians - I'm guessing that's what the horiz lines are?
meds <- ddply(df, .(lev), summarise, med = median(y))

ggplot(df, aes(x=lev, y=y, colour=lev)) +
geom_point(position="jitter") +
theme_bw() +
scale_colour_manual(values=c("red", "darkblue")) +
geom_errorbar(data=meds, aes(x=lev, y=med, ymin=med, ymax=med))

如果这很重要,您可以使用 annotate() 添加数字和小括号。 enter image description here

关于r - R中的ggplot2聚类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12878688/

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