2012-08-30 38 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()的幫助功能。