Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Created August 9, 2022 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liannewriting/57903422e5798bc9530058ead4e57690 to your computer and use it in GitHub Desktop.
Save liannewriting/57903422e5798bc9530058ead4e57690 to your computer and use it in GitHub Desktop.
time series prediction arima model python
forecast_test = model_fit.forecast(len(df_test))
df['forecast_manual'] = [None]*len(df_train) + list(forecast_test)
df.plot()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment