Add stl() function

- `stl()` wraps R's "stl" function in Python
- STL is a decomposition method for time series
This commit is contained in:
Alexander Hess 2021-01-11 16:10:45 +01:00
commit 98b6830b46
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
5 changed files with 388 additions and 14 deletions

View file

@ -1,3 +1,4 @@
"""Demand forecasting utilities."""
from urban_meal_delivery.forecasts import decomposition
from urban_meal_delivery.forecasts import timify