Created
May 28, 2022 17:13
-
-
Save alexhallam/939d2d1f102ce9da4c722bfaaeb6f37b to your computer and use it in GitHub Desktop.
naive forecast on apple
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
n = tbsp.Naive() | |
df_n = (n.predict(df_APPLE, horizon=7*4, frequency="D", lag = 1, uncertainty_samples = 500).assign(model = 'naive')) | |
df_n.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment