I'm currently using ARIMA with pyramid, and when creating an ARIMA object using pyramid's ARIMA() I can sepcify an exogenous parameter, but when calling fit() I cannot specify an exogenous variable.
However with statsmodels, I saw that this is reversed. I cannot specify an exogenous parameter with ARIMA() yet I can specify one with fit().
If I would like to include an exogenous parameter for both ARIMA() and fit(), which one should I use?