【发布时间】:2020-05-04 11:34:06
【问题描述】:
我在 statmodels 包中使用 SARIMAX 方法,Python 来估计 ARIMA 模型的系数。这是我参考的链接: https://www.statsmodels.org/dev/examples/notebooks/generated/statespace_sarimax_stata.html#
我有一个与上述链接中的示例 1 相关的问题。
Here is the screen shot of summary of ARIMA(1,1,1) result
如图所示,ARIMA(1,1,1) 的系数与截距 = 0.0943。但我不明白为什么在下面的过程方程中,它们的截距 = 0.1050。
- 能否告诉我如何计算这个值?
- 在什么情况下,我们应该在模型中加入截距?
- 我已阅读 Rob Hyndman (https://otexts.com/fpp2/arima-r.html) 对 R 中常量的解释。 R中的常量是否等同于SARIMAX Python中的intercept?
提前非常感谢您!
【问题讨论】:
标签: python constants statsmodels arima intercept