我如何在相同的输出中绘制p7
和p6
完全绘制,其中 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")
我如何在相同的输出中绘制p7
和p6
完全绘制,其中 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")