Last active
July 4, 2021 20:55
-
-
Save tomonori-masui/2d00ec9dcee6c1c482f0c6d5207fcd1e 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
test_len = int(len(ts_nl) * 0.3) | |
nl_train, nl_test = ts_nl.iloc[:-test_len], ts_nl.iloc[-test_len:] | |
forecaster = AutoARIMA(suppress_warnings=True) | |
forecaster.fit(nl_train) | |
forecaster.summary() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment