You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having difficulties to forecast ARIMA model with exogenous variables.
Fitting of the model is not an issue, however when calling forecast on fitted ARIMA model with exogenous variables the whole process fails. I do not have rank problems with my exogenous variables.
The error I am receiving is :
`Error in `mutate()`:
ℹ In argument: `.mdl = (function (object, ...) ...`.
Caused by error in `as.matrix(newxreg) %*% coefs`:
! non-conformable arguments`
The issue I am having arises with a short time series. Here you can find a reproducible example with two time series, one works fine while the other raises the said issue calling forecast. The code uses as input data_weekly.csv .
I know that fitting an ARIMA model on short time series is not the best practice but I do not expect an error, just a not so precise model.
I am having difficulties to forecast ARIMA model with exogenous variables.
Fitting of the model is not an issue, however when calling
forecast
on fitted ARIMA model with exogenous variables the whole process fails. I do not have rank problems with my exogenous variables.The error I am receiving is :
The issue I am having arises with a short time series. Here you can find a reproducible example with two time series, one works fine while the other raises the said issue calling forecast. The code uses as input data_weekly.csv .
I know that fitting an ARIMA model on short time series is not the best practice but I do not expect an error, just a not so precise model.
Thanks.
Example:
The text was updated successfully, but these errors were encountered: