On Sun, 2004-07-18 at 18:38, bob mccall wrote:
> Greetings:
>  
> I'm using the time series decomposition routine "stl" from the package "stats".
> But how do I get the results into a vector to work with them?
> example:
>  
> data(AirPassengers)
> m<-stl(AirPassengers,"per")
> print(m)
>  
> This lists the output but can't figure out how to extract the individual series like 
> seasonal, trend, irregular.

# Seasonal
as.vector(m$time.series[,1])
# Trend
as.vector(m$time.series[,2])
# Remainder
as.vector(m$time.series[,3])

>  
> Thanks,
> Bob
> 
>               
> ---------------------------------
> 
> Vote for the stars of Yahoo!'s next ad campaign!
>       [[alternative HTML version deleted]]
> 
> ______________________________________________
> [EMAIL PROTECTED] mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to