Created
May 28, 2022 17:24
-
-
Save alexhallam/dbda92912f100c67f73b9f6448214a47 to your computer and use it in GitHub Desktop.
seasonal naive
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
import tablespoon as tbsp | |
from tablespoon.data import SEAS | |
sn = tbsp.Snaive() | |
df_sn = sn.predict( | |
SEAS, horizon=7 * 4, frequency="D", lag=7, uncertainty_samples=800 | |
).assign(model="snaive") | |
df_sn.head(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment