如何在R中绘制不同颜色的不同系列?

时间:2015-03-23 13:02:59

标签: r plot series

鉴于以下数据:

data =

1 2.3
1 3.4
1 2.1
2 4.3
2 5.3
2 6.2
3 0.2
3 0.3
3 0.4

我需要将这些数据绘制为3个不同的系列:

  • 第1条曲线:第1列等于1

  • 第二条曲线:当第二列等于2

  • 第3条曲线:当第3列等于3

如何以最灵活的方式(使用不同的颜色)做到这一点?

1 个答案:

答案 0 :(得分:1)

在此解决方案中,我假设您的第一列是您的分组变量;第二列是你在Y轴上喜欢的变量。我为时间序列添加了一个变量x。

数据

df<-data.frame(v1=as.factor(c(1,1,1,2,2,2,3,3,3)), v2=as.numeric(c(2.3, 3.4, 2.1, 4.3, 5.3, 6.2, 0.2, 0.3, 0.4)))

df$x<-c(1,2,3,1,2,3,1,2,3)

ggplot

library(ggplot2)

ggplot(df, aes(x,v2, group=v1, colour=v1)) + geom_line()

enter image description here