2012-08-30 48 views
0

华宇功能的季节性参数这里是我的代码:麻烦与R中

arimafit <- arima(x1, order = c(5,1,5), seasonal = list(order = c(0,1,0))) 

fcast1 <- forecast(arimafit,50) 

summary(fcast1) 

,其结果是:

Forecast method: ARIMA(5,1,5)     

Model Information: 

Series: x1 

ARIMA(5,1,5) 

也就是说,它没有接缝使用季节性的说法。我做了大量的搜索和玩弄这个争论无济于事。任何帮助,将不胜感激

+0

欢迎来到SO。一个[reporoducible示例](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example)使得帮助成为可能。就你而言,你可以上传'dput(x1)'(或一个合理的子集)以及你正在使用的软件包。 – mnel

回答

3

季节性参数还需要指定的时间段,如果x1频率尚未设置。阅读arima()的帮助功能。