Skip to content
Prev 163631 / 398506 Next

how to handle irregularly spaced data as timeseries

Have a look at the zoo package.  There are three vignettes (pdf documents)
included with the package that give many examples of its use.  Also
see ?read.zoo, ?plot.zoo and ?xyplot.zoo

You will need something like:

library(zoo)
z <- read.zoo("myfile", ...whatever...)
plot(z)
On Tue, Dec 2, 2008 at 7:47 PM, Kirk Wythers <kwythers at umn.edu> wrote: