Last active
July 4, 2021 05:42
-
-
Save tomonori-masui/d72a6d6b343bf66ce3fa9e37f0ff7136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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