如何组合多个多线图(常见的x轴)ggplot?

时间:2017-07-28 12:40:22

标签: r ggplot2

我有五个图,其中包含4行(其中两行在下面):

g1<-ggplot(df)+geom_line (aes(x=Time, y=z1, color="a"))+geom_line (aes(x=Time, y=z6, color="b"))+
  geom_line (aes(x=Time, y=z11, color="c"))+geom_line (aes(x=Time, y=z16, color="d"))+
  scale_color_discrete(name="")+labs(title="")

g2<-ggplot(container)+geom_line (aes(x=Time, y=z2, color="a"))+geom_line (aes(x=Time, y=z7, color="b"))+
  geom_line (aes(x=Time, y=z12, color="c"))+geom_line (aes(x=Time, y=z17, color="d"))+
  scale_color_discrete(name="")+labs(title="")

现在我想在具有公共x轴和单独y轴的列中对其进行排序。就像在post中一样。 但是,我找不到解决方案。

0 个答案:

没有答案