ggplot中的多个图

时间:2017-07-20 15:27:22

标签: r ggplot2

我有8826个Obs和4个变量的组合数据集。我的列名是tVec,yVec,tVec,yVec。

我需要将2 yVec对x轴绘制为带有图例的单个tVec。我尝试了下面但只绘制了一个情节。

plotnew <- ggplot(data=combined, aes(x=tVec, y= yVec, colour='variable')) + geom_line()

Plot看起来像这样: Plot looks like this

对此有任何想法。厌倦了许多例子。只是没有做对。

感谢。

1 个答案:

答案 0 :(得分:1)

您需要格式化输入data.frame:

combined = data.frame(tVec=1:100,yVec=rnorm(100),tVec=101:200,yVec=rnorm(100))

df = rbind(data.frame(x=combined$tVec,y=combined$yVec,label="first"),
           data.frame(x=combined$tVec.1,y=combined$yVec.1,label="second"))

library(ggplot2)
plotnew <- ggplot(data=df, aes(x, y, colour=label))+
  geom_line()

enter image description here

或者

df = rbind(data.frame(x=combined$tVec,y=combined$yVec,label="first"),
           data.frame(x=combined$tVec,y=combined$yVec.1,label="second"))

library(ggplot2)
plotnew <- ggplot(data=df, aes(x, y, colour=label))+
  geom_line()

enter image description here

希望有帮助