使用for循环在ggplot2中绘制单个图中的多行

时间:2013-02-05 10:03:00

标签: r ggplot2

我尝试在单个图中绘制多行,如下所示:

y <- matrix(rnorm(100), 10, 10)
m <- qplot(NULL)
for(i in 1:10) {
    m <- m + geom_line(aes(x = 1:10, y = y[,i]))
}
plot(m)

但是,qplot似乎在m plot(m) i 10期间解析plot(m),因此plot(1,1,type='n', ylim=range(y), xlim=c(1,10)) for(i in 1:10) { lines(1:10, y[,i]) } 仅生成单行。

我期望看到的类似于:

ggplot2

应该包含10个不同的行。

有{{1}}方法吗?

2 个答案:

答案 0 :(得分:10)

你应该采用ggplot2的方式,而不是破坏循环。 ggplot2想要长格式的数据(你可以用reshape2 :: melt()转换它)。然后通过一列(这里是Var2)分割线。

y <- matrix(rnorm(100), 10, 10)
require(reshape2)
y_m <- melt(y)

require(ggplot2)
ggplot() +
  geom_line(data = y_m, aes(x = Var1, y = value, group = Var2))

enter image description here

答案 1 :(得分:5)

EDi提出的方式是最好的方式。如果您仍想使用for循环,则需要使用for循环来生成数据框。

如下所示:

# make the data
> df <- NULL
> for(i in 1:10){
+ temp_df <- data.frame(x=1:10, y=y[,i], col=rep(i:i, each=10))
+ df <- rbind(df,temp_df)} 

> ggplot(df,aes(x=x,y=y,group=col,colour=factor(col))) + geom_line() # plot data

输出:

enter image description here