我想从我的数据中验证和检查 ARIMA 模型,结果为 (0,1,1)x(0,1,1)_12。
我想用 R 确定这种模型的参数,然后进行交叉预测。我已经申请:
parameters <- arima(x1_1_12, c(0, 1, 1),
seasonal = list(order = c(0, 1, 1), period = 12)))
Coefficients:
ma1 sma1
-0.4018 -0.5569
s.e. 0.0896 0.0731
sigma^2 estimated as 0.0002543: log likelihood = 353.96, aic = -701.92
我想获得 p 值并估计模型参数,最后检查模型。谢谢!