Skip to content

Instantly share code, notes, and snippets.

@alexhallam
Created May 28, 2022 17:13
Show Gist options
  • Save alexhallam/939d2d1f102ce9da4c722bfaaeb6f37b to your computer and use it in GitHub Desktop.
Save alexhallam/939d2d1f102ce9da4c722bfaaeb6f37b to your computer and use it in GitHub Desktop.
naive forecast on apple
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