0

What are the times series methods can I use to incorporate exogenous variables in the series other than ARIMAX and LSTM?

2 Answers2

0

In 2022, you can also use NBEATS model and Tranformer based models. It could be easily used with the help of darts library. https://pypi.org/project/darts/

stanly
  • 1
  • 1
0

Seasonal Autoregressive Integrated Moving-Average with Exogenous Regressors (SARIMAX) with Exogenous Regressors (SARIMAX) is an extension of the SARIMA model that also includes the modeling of exogenous variables.

The SARIMAX method can also be used to model the subsumed models with exogenous variables, such as ARX, MAX, ARMAX, and ARIMAX.

The method is suitable for univariate time series with trend and/or seasonal components and exogenous variables.

Vector Autoregression Moving-Average with Exogenous Regressors (VARMAX) is an extension of the VARMA model that also includes the modeling of exogenous variables. It is a multivariate version of the ARMAX method.

Classical Time Series Forecasting Methods

Pluviophile
  • 3,808
  • 13
  • 31
  • 54