Skip to content

Instantly share code, notes, and snippets.

@tomonori-masui
Last active July 4, 2021 20:55
Show Gist options
  • Save tomonori-masui/2d00ec9dcee6c1c482f0c6d5207fcd1e to your computer and use it in GitHub Desktop.
Save tomonori-masui/2d00ec9dcee6c1c482f0c6d5207fcd1e to your computer and use it in GitHub Desktop.
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