Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Last active August 18, 2022 15:31
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/0bc65788c4460d0f0ba3b627cab25833 to your computer and use it in GitHub Desktop.
Save liannewriting/0bc65788c4460d0f0ba3b627cab25833 to your computer and use it in GitHub Desktop.
time series prediction arima model python
import pmdarima as pm
auto_arima = pm.auto_arima(df_train, stepwise=False, seasonal=False)
auto_arima
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment