Add stl() function
- `stl()` wraps R's "stl" function in Python - STL is a decomposition method for time series
This commit is contained in:
parent
b0f2fdde10
commit
98b6830b46
5 changed files with 388 additions and 14 deletions
|
|
@ -6,11 +6,12 @@ Example:
|
|||
True
|
||||
"""
|
||||
# The config object must come before all other project-internal imports.
|
||||
from urban_meal_delivery.configuration import config # noqa:F401 isort:skip
|
||||
from urban_meal_delivery.configuration import config # isort:skip
|
||||
|
||||
from importlib import metadata as _metadata
|
||||
|
||||
from urban_meal_delivery import db # noqa:F401
|
||||
from urban_meal_delivery import db
|
||||
from urban_meal_delivery import forecasts
|
||||
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue