Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Python 进行时间序列分析。我观察到以下模式。由于 ACF 在滞后 12 处中断并且 PACF 结束,这是否意味着我应该在这个系列中安装 MA(12)?
好吧,我实际上在曲线上拟合了一个 MA(12),我得到了以下结果:
大多数系数实际上是微不足道的。此外,我不太明白这些 nans 是怎么出来的。
这可能是季节性数据。首先尝试使用 statsmodels 运行季节性分解。然后绘制分解数据的 PACF 和 ACF 并尝试拟合更简约的模型(即,较小的数字)。