[R] multiple plots..again

2004-01-28 Thread Simon Melov
Hi, I realize many posts have been written about this, but I have gone through the archives and cannot find an example/solution particular to my problem. I have two Df's as follows Df-1 Time V1 V2 V3...V100 9 0.5 1.8 -0.3 .. 14 2 -0.4 0.003.. 19 -4 3 0.1.. Df-2 is the same but has different

RE: [R] multiple plots..again

2004-01-28 Thread Andy Bunn
Have you tried layout? layout(matrix(1:10, 5, 2, byrow = TRUE)) for(i in 1:10){ plot(rnorm(100), type = l, col = red, main = paste(Your Variable Number, i, sep = )) lines(runif(100), col = blue) } Does this get you started? -A __ [EMAIL