gpt4 book ai didi

r - 将点添加到分组条形图 (ggplot2)

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

我有一个包含两个时间点测量值的数据集。我已经把第一个时间点的数据做了条形图,想为第二个时间点加点(仅供引用)。正如您在下面看到的那样,点在那里,但它们不在正确的 x 轴位置(即它们都在相同的 x 值上,与条形不同)。

如何解决?

library(ggplot2)

MyData = data.frame(
method=rep(c("A","B","C","D","E"),times=3),
time1=rnorm(30,10,3),
time2=rnorm(30,8,2),
lab=rep(rep(c(1,2,3),each=5),times=2),
cat=rep(c(1,2),each=15)
)

p <- ggplot(data = MyData,
aes(x=lab)) +
geom_bar(aes(y=time1,fill=method),
stat="identity",
position="dodge",
alpha=.7
) +
geom_point(aes(y=time2,group=method),
stat="identity",
position="dodge",
alpha=.8,
size=3) +
scale_fill_brewer(palette=3) +
facet_grid(. ~ cat)
p

enter image description here

最佳答案

geom_point 中使用 position = position_dodge(width = .9)

关于r - 将点添加到分组条形图 (ggplot2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31315112/

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