I've been scouring the net for something like this, but I can't quite figure it out.
Here is my data. I am trying to predict 'Close' using both the time series data from 'Close' as well as the time series data from 'Posts'. I've tried looking into documentation on SARIMA, auto arima, etc... and I'm not getting anywhere. Does anyone have any idea on how this could be done in Python? This is a pandas dataframe.
That's the simplest way I know of to do what you're asking (use a model, presumably an ARIMA model, to predict future values of
Close
). TheX
argument is the exogenous data. Note that you'll also need to provide it with exogenous data when predicting, hence theX=...
in the code above.