Skip to content

Instantly share code, notes, and snippets.

@tomonori-masui
Last active July 4, 2021 05:42
Show Gist options
  • Select an option

  • Save tomonori-masui/d72a6d6b343bf66ce3fa9e37f0ff7136 to your computer and use it in GitHub Desktop.

Select an option

Save tomonori-masui/d72a6d6b343bf66ce3fa9e37f0ff7136 to your computer and use it in GitHub Desktop.
from sktime.forecasting.arima import AutoARIMA
forecaster = AutoARIMA(start_p=8, max_p=9, suppress_warnings=True)
sun_train.index = sun_train.index.astype(int)
forecaster.fit(sun_train)
forecaster.summary()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment