0

我如何在相同的输出中绘制p7p6完全绘制,其中 m7 和 m6 是通过融合不同的数据集获得的?提前致谢

p7 <- ggplot(m7,aes(x=time,y=value)) +stat_summary(fun.data = "mean_sdl", geom = "smooth")
p6 <- ggplot(m6,aes(x=time,y=value)) +stat_summary(fun.data = "mean_sdl", geom = "smooth")
4

1 回答 1

1

你可以试试这个:

p7 <- ggplot(m7,aes(x=time,y=value)) +stat_summary(fun.data = "mean_sdl", geom = "smooth")
p6 <- p7 + stat_summary(aes(x=time,y=value), fun.data = "mean_sdl", geom = "smooth", data = m6)
于 2014-02-26T22:33:42.373 回答