Displaying 1 result from an estimated 1 matches for "tsreplace".
Did you mean:
toreplace
2009 Aug 31
1
how to add data to some ts
...add data ?
For example if I have something like
z <- ts(rnorm(10), start = c(1990, 1), frequency = 1)
seriesNames(z) <- "vec"
I want to add the next 10 years, like
z <- ts(rnorm(10), start = c(2000, 1), frequency = 1)
seriesNames(z) <- "vec"
If I use something TSreplace the new series starting at 2000 just
replaces the existing one instead of just adding another. Is there any
possibility to add data without reading the whole database into R ?
thx in advance
matt
P.S.: some basic TS manipulating manuals are highly appreciated, its
just that i found the m...