Skip to content
Prev 116890 / 398498 Next

plotting variable sections of hourly time series data using plot.zoo

Regarding your other questions:


plot(z[,3:5]) # only plot columns 3 to 5

# only plot between indicated times
st <- chron("01/01/03", "02:00:00")
en <- chron("03/26/2003", "07:00:00")
zz <- window(z, start = st, end = en)
plot(zz)
On 5/31/07, Gabor Grothendieck <ggrothendieck at gmail.com> wrote: