> q<-ts(w,start=1,frequency=288)
> plot(stl(q,s.window= "periodic"))
请问,用stl()函数分解完以后,如图所示,请问如何预测?
> auto.arima(q)
Series: q
ARIMA(2,1,1)
Coefficients:
ar1 ar2 ma1
0.9517 -0.1474 -0.9038
s.e. 0.0160 0.0119 0.0119
sigma^2 estimated as 0.0002921: log likelihood=19844.04
AIC=-39680.08 AICc=-39680.08 BIC=-39652.4
> m1=arima(q,order=c(2,1,1))
> yuce=forecast.Arima(m1,h=288)
Error in ts(x) : 对象不是矩阵 #请问这是什么意思?