我想使用ggplot2包中的qplot在样本图上绘制多条线。 但是我遇到了一些问题。
使用旧的情节和线条功能我会做类似
的事情m<-cbind(1:4,5:8,-(5:8))
colnames(m)<-c("time","y1","y2")
m<-as.data.frame(m)
> m
time y1 y2
1 1 5 -5
2 2 6 -6
3 3 7 -7
4 4 8 -8
plot(x=m$time,y=m$y1,type='l',ylim=range(m[,-1]))
lines(x=m$time,y=m$y2)
由于
答案 0 :(得分:5)
将重塑包用于melt
m:
library(reshape)
library(ggplot2)
m2 <- melt(m, id = "time")
p <- ggplot(m2, aes(x = time, y = value, color = variable))
p + geom_line() + ylab("y")
您可以根据自己的喜好重命名新data.frame中的列。这里的诀窍是有一个表示你想要绘制的每条线的因子。