Skip to content
Prev 156754 / 398506 Next

Time series (ts) questions.

Try this to append 100 to the end of the series, say:

tt <- ts(1:12, frequency=5) # sample data
ts(c(tt, 100), start = start(tt), frequency = frequency(tt))
On Mon, Sep 22, 2008 at 2:17 AM, <rkevinburton at charter.net> wrote: