user1802143
user1802143

Reputation: 15722

Input Features ARIMA model

I am learning about the ARIMA model. My training set consists of 1) a date, 2) about 20 input features for each date, 3) output variable. Do ARIMA models take in as input multiple input features and then predict one of the features? Or do they only operate on a single variable?

Upvotes: 4

Views: 1311

Answers (1)

Rob Hyndman
Rob Hyndman

Reputation: 31820

ARIMA models are time series models, so they do not allow exogenous variables. There are various extensions of ARIMA models that do include exogenous variables including ARIMAX models, transfer function models, dynamic regression models, etc.

Upvotes: 3

Related Questions