Skip to content

Commit

Permalink
fix: correct seasonal period
Browse files Browse the repository at this point in the history
  • Loading branch information
MMenchero committed Aug 23, 2024
1 parent 8559567 commit 5052f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbs/docs/models/MultipleSeasonalTrend.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3426,7 +3426,7 @@
"from statsforecast.utils import ConformalIntervals\n",
"horizon = len(test) # number of predictions\n",
"\n",
"models = [MSTL(season_length=[24, 24*7], # seasonalities of the time series \n",
"models = [MSTL(season_length=[24, 168], # seasonalities of the time series \n",
"trend_forecaster=AutoARIMA(prediction_intervals=ConformalIntervals(n_windows=3, h=horizon)))]"
]
},
Expand Down

0 comments on commit 5052f9a

Please sign in to comment.