У меня есть следующий код ..
ARIMA(
data, # dependent variable
exog=exogenous,
order=(p, d, q),
).fit(solver='powell', disp=-1,)
Проверка стационарности ADF на проходах данных, т. Е. data
является стационарным.
Однако, как мне убедиться, что с exogenous
(это матрица nx3
) - эта ошибка не выдается ...
raise ValueError("The computed initial AR coefficients are not "
ValueError: The computed initial AR coefficients are not stationary
You should induce stationarity, choose a different model order, or you can
pass your own start_params.