Move decomposition module into methods sub-package
- move the module - unify the corresponding tests in `tests.forecasts.methods` sub-package - make all `predict()` and the `stl()` function round results - streamline documentation
This commit is contained in:
parent
a5b590b24c
commit
08b748c867
9 changed files with 21 additions and 14 deletions
1
tests/forecasts/methods/__init__.py
Normal file
1
tests/forecasts/methods/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
"""Tests for the `urban_meal_delivery.forecasts.methods` sub-package."""
|
||||
|
|
@ -7,7 +7,7 @@ import pytest
|
|||
|
||||
from tests.forecasts.conftest import NS
|
||||
from tests.forecasts.conftest import VERTICAL_FREQUENCY
|
||||
from urban_meal_delivery.forecasts import decomposition
|
||||
from urban_meal_delivery.forecasts.methods import decomposition
|
||||
|
||||
|
||||
class TestInvalidArguments:
|
||||
|
|
@ -1,4 +1,7 @@
|
|||
"""Test the `arima.predict()` and `ets.predict()` functions."""
|
||||
"""Test the `arima.predict()` and `ets.predict()` functions.
|
||||
|
||||
We consider both "classical" time series prediction models.
|
||||
"""
|
||||
|
||||
import datetime as dt
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue