Skip to content
Prev 86540 / 398502 Next

Plotting two 3-dimensional time series in a 3 x 2 plot - alternatives to par(mfrow())

plot.zoo takes the nc= argument which specifies the number of columns
it uses, e.g.

library(zoo)
library(tseries)
data(USeconomic)
z <- as.zoo(USeconomic)
plot(z, nc = 2)
On 2/15/06, S??ren H??jsgaard <Soren.Hojsgaard at agrsci.dk> wrote: