You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On #195 , we introduced auto detection of appropriate naive models. Unfortunately, this breaks for series without a full week worth of samples - a weekly naive model is used instead of the correct regular naive model.
The text was updated successfully, but these errors were encountered:
create new function, _can_use_season_weekly(), based on line 1949:
use_season_weekly= (
# Need more than a full week
(max_date_delta>pd.Timedelta(min_periods*7, unit='d')) &# Need at least daily samples
(min_date_delta<=pd.Timedelta(1, unit='d'))
)
On #195 , we introduced auto detection of appropriate naive models. Unfortunately, this breaks for series without a full week worth of samples - a weekly naive model is used instead of the correct regular naive model.
The text was updated successfully, but these errors were encountered: