【发布时间】:2020-10-19 09:12:16
【问题描述】:
在确定 SARIMA 中的顺序和季节性顺序时是否有任何规则?
我注意到,当我在 Python 中使用 StatsModels 时,我无法选择低于或等于 AR 滞后数的季节性滞后。
示例:
我正在运行一个带有订单 (3,1,3) 和季节性订单 (3,1,3,3) 的 SARIMA。
这会产生错误:ValueError: Invalid model: autoregressive lag(s) {3} are in both the season and non-seasonal autoregressive components.
【问题讨论】:
标签: python time-series arima