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

时间:2015-07-09 10:43:36

标签: r ggplot2 geom-bar

我有一个包含两个时间点测量值的数据集。我已经制作了第一个时间点数据的条形图,并希望为第二个时间点添加点(这只是作为参考)。正如您在下面看到的那样,点在那里,但它们不在正确的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

1 个答案:

答案 0 :(得分:3)

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