Skip to content
Prev 154933 / 398506 Next

(no subject)

The zoo package can represent and plot irregular time series.
There are three vignettes that describe it plus the help pages.
See ?zoo
?plot.zoo
?xyplot.zoo

e.g.

library(zoo)
z <- zoo(1:3, Sys.Date() + c(1, 2, 5))
plot(z)
library(lattice)
xyplot(z)
On Wed, Sep 3, 2008 at 3:00 PM, Dr Eberhard W Lisse <el at lisse.na> wrote: