On Fri, 9 Jul 2010, kateg wrote:
Hi all,
I'm working on decomposition and comparison of several time series. I'm
interested in extracting the trend components for each time series using the
stl function and overlaying them on one another.
I'm not sure how to plot the trend function alone and to do the overlay
using some kind of loop. If anyone has any insight that would be great!
stl(...)$time.series
is a "ts" series containing seasonal/trend/remainder. Thus, the trend can
be extracted via
stl(...)$time.series[, "trend"]
See ?stl for more details.
Z
thanks,
Katie
--
View this message in context:
http://r.789695.n4.nabble.com/stl-function-tp2283891p2283891.html
Sent from the R help mailing list archive at Nabble.com.
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.