Re: [R] Graphing question (multiple line graphs arranged spatially)

2008-03-12 Thread Jim Lemon
stephen sefick wrote: station month bas 190 5 0.000 190 7 1.563 190 10 0.000 190 11 0.000 202 4 18.750 202 5 18.750 202 7 6.250 202 10 4.800 202 11 3.125 198 4 18.750 198 5 31.250 198

[R] Graphing question (multiple line graphs arranged spatially)

2008-03-11 Thread stephen sefick
station month bas 190 5 0.000 190 7 1.563 190 10 0.000 190 11 0.000 202 4 18.750 202 5 18.750 202 7 6.250 202 10 4.800 202 11 3.125 198 4 18.750 198 5 31.250 198 7 3.125 198 10

Re: [R] Graphing question (multiple line graphs arranged spatially)

2008-03-11 Thread John Kane
I don't quite see how you can do this as a 3-dimenional graph but will something like this do what you want? Note I used xx rather than c for the data.frame name. plot(x$bas~x$month, type=b, col=1, ylim=c(min(xx$bas),max(xx$bas)), xlim=c(max(xx$month),min(xx$month) )) lines(y$bas~y$month,

Re: [R] Graphing question (multiple line graphs arranged spatially)

2008-03-11 Thread David Winsemius
stephen sefick [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: fish - station month bas 190 5 0.000 190 7 1.563 190 10 0.000 190 11 0.000 202 4 18.750 202 5 18.750 202 7 6.250 202 10 4.800 202 11 3.125 198