我有一个与此类似的数据集:
x <- data.frame(date = c(20190902, 20190903, 20190904),
Group = c(rep("A", 3)),
mean = c(2.5, 3.4, 4.6),
ci_upper = c(1.2, 0.5, 0.3),
ci_lower = c(0.5, 0.4, 0.25))
y <- data.frame(date= c(20190902, 20190903, 20190904),
Group = c(rep("B", 3)),
mean = c(0.4, 3.8, 6.2),
ci_upper = c(1.9, 0.9, 0.5),
ci_lower = c(0.5, 0.8, 0.8))
df <- rbind(x, y)
我想用两个不同的组(A和B)在整个时间范围内绘制置信带。
当前我正在使用此方法,但无法正常工作
p <- ggplot(df) +
geom_line(aes(y = mean, x = date, group = type ))+
geom_ribbon(aes(ymin = ci_lower, ymax = ci_upper, x = week, fill = "grey70"), alpha = 0.3)+
scale_colour_manual("", values = "blue")+
scale_fill_manual("", values = "grey12")
我不确定该如何处理。
答案 0 :(得分:1)
您快到了。只需对aes()
进行一些小的更正。
但是首先我会稍微修改输入内容,以使结果看起来更漂亮(现在ci_upper
/ ci_lower
与相应的平均值相比并不总是更多/更少):
# to ensure reproducibility of the samples
set.seed(123)
df$ci_lower <- df$mean - sample(nrow(x))
df$ci_upper <- df$mean + sample(nrow(x))
在ggplot()
调用中应更改的主要内容是用于绘图的美学定义。请注意,默认美学值只能设置一次。
p <- ggplot(df,
aes(x = as.Date(as.character(date), format = "%Y%m%d"),
y = mean,
group = Group, col = Group, fill = Group)) +
geom_line() +
geom_ribbon(aes(ymin = ci_lower, ymax = ci_upper), alpha = 0.3)+
scale_colour_manual("", values = c("red", "blue")) +
scale_fill_manual("", values = c("red", "blue"))
结果如下:
实际上,最后两行代码甚至都不是必需的,因为默认的ggplot-color方案(您用来显示期望的结果)看起来也很不错。