Message-ID: <971536df0602151730h47f52440nf4a9d954a74ee58c@mail.gmail.com>
Date: 2006-02-16T01:30:32Z
From: Gabor Grothendieck
Subject: Plotting two 3-dimensional time series in a 3 x 2 plot - alternatives to par(mfrow())
In-Reply-To: <C83C5E3DEEE97E498B74729A33F6EAEC038781C8@DJFPOST01.djf.agrsci.dk>
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:
> I am trying to plot two 3-dimensional time series in one window (such that there will be 3 rows and 2 columns). For zoo and ts objects the par(mfrow...) option does not work. I can get xyplot to make the plots, but data are on widely different scales in the three dimensions, and xyplot uses the same scale on all y-axis which means that in some dimensions the curves will be almost horizontal lines. Any suggestions?
> Thanks in advance
> S??ren
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
>