-1

我想从我的数据中验证和检查 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 值并估计模型参数,最后检查模型。谢谢!

4

1 回答 1

1

您已经估计了模型参数 - 它们就在您的输出中!

至于 p 值,请参阅这篇文章:

https://stats.stackexchange.com/questions/8868/how-to-calculate-the-p-value-of-parameters-for-arima-model-in-r

至于“检查模型”——这取决于你的意思。

于 2013-04-01T23:38:35.227 回答