RE: [R] Calendar Time Series

2003-11-12 Thread Heywood, Giles
I'm not sure what a calendar time series is, but it may be helpful to consider it as an irregular time series, depending on what analysis or display you are wanting to do. As you say, there are packages (including 'its') for this purpose. - Giles > -Original Message- > From: Brian Becka

RE: [R] Calendar Time Series

2003-11-11 Thread Gabor Grothendieck
Using the chron package you could create your time series like this (assuming it starts at Jan 25, 1999): z <- ts(rnorm(25),start=as.numeric(chron("01/25/99"))) and then get back the times like this: chron(time(z)) To plot it: plot(chron(time(z)),z) --- Date: Tue, 11 Nov 2003 11:3

Re: [R] Calendar Time Series

2003-11-11 Thread Dirk Eddelbuettel
On Tue, Nov 11, 2003 at 11:34:10AM -0500, Brian Beckage wrote: > Does R have any facilities for calendar time series? I'm working > with a 40 year long, daily time series and I would like to have each > datum associated with a calendar date. I searched the R website and Did you look at help(