覆盖ggplot2中的图

时间:2014-04-26 23:12:18

标签: r plot ggplot2

如下所示,如何在ggplot2中将一个绘图叠加在另一个上面?我想在R中使用ggplot2绘制红色时间序列(现在红色的一个在灰色的上面,我希望我的图形是另一种方式)。这是我的代码(我生成一些数据以向您显示我的问题,真正的数据集要复杂得多):

install.packages("ggplot2")
library(ggplot2)

time <- rep(1:100,2)
timeseries <- c(rep(0.5,100),rep(c(0,1),50))
upper <- c(rep(0.7,100),rep(0,100))
lower <- c(rep(0.3,100),rep(0,100))
legend <- c(rep("red should be under",100),rep("grey should be above",100))

dataset <- data.frame(timeseries,upper,lower,time,legend)

ggplot(dataset, aes(x=time, y=timeseries)) +
  geom_line(aes(colour=legend, size=legend)) +
  geom_ribbon(aes(ymax=upper, ymin=lower, fill=legend), alpha = 0.2) +
  scale_colour_manual(limits=c("grey should be above","red should be under"),values = c("grey50","red")) +
  scale_fill_manual(values = c(NA, "red")) +
  scale_size_manual(values=c(0.5, 1.5)) +
  theme(legend.position="top", legend.direction="horizontal",legend.title = element_blank())

1 个答案:

答案 0 :(得分:1)

将要分组的数据转换为因子,并明确设置级别的顺序。 ggplot按照此顺序绘制图层。此外,最好将scale_manual代码分组到正在应用的geom以便于阅读。

legend <- factor(legend, levels = c("red should be under","grey should be above"))

c <- data.frame(timeseries,upper,lower,time,legend)

ggplot(c, aes(x=time, y=timeseries)) +
  geom_ribbon(aes(ymax=upper, ymin=lower, fill=legend), alpha = 0.2) +
  scale_fill_manual(values = c("red", NA)) +
  geom_line(aes(colour=legend, size=legend)) +
  scale_colour_manual(values = c("red","grey50")) +
  scale_size_manual(values=c(1.5,0.5)) +
  theme(legend.position="top", legend.direction="horizontal",legend.title = element_blank())

请注意,scale_manual中值的排序现在映射为“gray”和“red”

enter image description here