├── .coveragerc ├── .editorconfig ├── .flake8 ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── -bug-.md │ ├── -docs-.md │ ├── -enhancement-.md │ └── -feature--.md └── workflows │ └── workflow.yaml ├── .gitignore ├── .readthedocs.yml ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── conf.py ├── contributing.rst ├── geo.rst ├── hierarchy.rst ├── history.rst ├── hts.core.rst ├── hts.hierarchy.rst ├── hts.model.rst ├── hts.rst ├── hts.utilities.rst ├── hts.viz.rst ├── hts_on_a_cluster.rst ├── index.rst ├── installation.rst ├── make.bat ├── models.rst ├── parallelization.rst ├── readme.rst └── usage.rst ├── hts ├── __init__.py ├── _t.py ├── convenience.py ├── core │ ├── __init__.py │ ├── exceptions.py │ ├── regressor.py │ ├── result.py │ └── utils.py ├── defaults.py ├── functions.py ├── hierarchy │ ├── __init__.py │ └── utils.py ├── model │ ├── __init__.py │ ├── ar.py │ ├── base.py │ ├── es.py │ └── p.py ├── revision.py ├── transforms.py ├── utilities │ ├── __init__.py │ ├── distribution.py │ ├── load_data.py │ └── utils.py └── viz │ ├── __init__.py │ └── geo.py ├── pyproject.toml ├── reqs ├── base.txt └── extras │ ├── all.txt │ ├── auto_arima.txt │ ├── dev.txt │ ├── distributed.txt │ ├── geo.txt │ ├── prophet.txt │ └── test.txt ├── scripts └── deploy.sh ├── setup.cfg ├── setup.py └── tests ├── conftest.py ├── integ ├── test_fit_model.py └── test_fit_regressor.py └── unit ├── test_convenience.py ├── test_ditribution.py ├── test_functions.py ├── test_ntree.py ├── test_revision.py └── test_transform.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-bug-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/ISSUE_TEMPLATE/-bug-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-docs-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/ISSUE_TEMPLATE/-docs-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-enhancement-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/ISSUE_TEMPLATE/-enhancement-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-feature--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/ISSUE_TEMPLATE/-feature--.md -------------------------------------------------------------------------------- /.github/workflows/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.github/workflows/workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/geo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/geo.rst -------------------------------------------------------------------------------- /docs/hierarchy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hierarchy.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/hts.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.core.rst -------------------------------------------------------------------------------- /docs/hts.hierarchy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.hierarchy.rst -------------------------------------------------------------------------------- /docs/hts.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.model.rst -------------------------------------------------------------------------------- /docs/hts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.rst -------------------------------------------------------------------------------- /docs/hts.utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.utilities.rst -------------------------------------------------------------------------------- /docs/hts.viz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts.viz.rst -------------------------------------------------------------------------------- /docs/hts_on_a_cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/hts_on_a_cluster.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/models.rst -------------------------------------------------------------------------------- /docs/parallelization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/parallelization.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /hts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/__init__.py -------------------------------------------------------------------------------- /hts/_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/_t.py -------------------------------------------------------------------------------- /hts/convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/convenience.py -------------------------------------------------------------------------------- /hts/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hts/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/core/exceptions.py -------------------------------------------------------------------------------- /hts/core/regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/core/regressor.py -------------------------------------------------------------------------------- /hts/core/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/core/result.py -------------------------------------------------------------------------------- /hts/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/core/utils.py -------------------------------------------------------------------------------- /hts/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/defaults.py -------------------------------------------------------------------------------- /hts/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/functions.py -------------------------------------------------------------------------------- /hts/hierarchy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/hierarchy/__init__.py -------------------------------------------------------------------------------- /hts/hierarchy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/hierarchy/utils.py -------------------------------------------------------------------------------- /hts/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/model/__init__.py -------------------------------------------------------------------------------- /hts/model/ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/model/ar.py -------------------------------------------------------------------------------- /hts/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/model/base.py -------------------------------------------------------------------------------- /hts/model/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/model/es.py -------------------------------------------------------------------------------- /hts/model/p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/model/p.py -------------------------------------------------------------------------------- /hts/revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/revision.py -------------------------------------------------------------------------------- /hts/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/transforms.py -------------------------------------------------------------------------------- /hts/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hts/utilities/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/utilities/distribution.py -------------------------------------------------------------------------------- /hts/utilities/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/utilities/load_data.py -------------------------------------------------------------------------------- /hts/utilities/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/utilities/utils.py -------------------------------------------------------------------------------- /hts/viz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hts/viz/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/hts/viz/geo.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reqs/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/reqs/base.txt -------------------------------------------------------------------------------- /reqs/extras/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/reqs/extras/all.txt -------------------------------------------------------------------------------- /reqs/extras/auto_arima.txt: -------------------------------------------------------------------------------- 1 | pmdarima>=1.8.0 2 | -------------------------------------------------------------------------------- /reqs/extras/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/reqs/extras/dev.txt -------------------------------------------------------------------------------- /reqs/extras/distributed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/reqs/extras/distributed.txt -------------------------------------------------------------------------------- /reqs/extras/geo.txt: -------------------------------------------------------------------------------- 1 | folium==0.10.0 2 | h3==3.4.3 -------------------------------------------------------------------------------- /reqs/extras/prophet.txt: -------------------------------------------------------------------------------- 1 | fbprophet==0.7.1 2 | pystan<3.0 3 | -------------------------------------------------------------------------------- /reqs/extras/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/reqs/extras/test.txt -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integ/test_fit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/integ/test_fit_model.py -------------------------------------------------------------------------------- /tests/integ/test_fit_regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/integ/test_fit_regressor.py -------------------------------------------------------------------------------- /tests/unit/test_convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_convenience.py -------------------------------------------------------------------------------- /tests/unit/test_ditribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_ditribution.py -------------------------------------------------------------------------------- /tests/unit/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_functions.py -------------------------------------------------------------------------------- /tests/unit/test_ntree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_ntree.py -------------------------------------------------------------------------------- /tests/unit/test_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_revision.py -------------------------------------------------------------------------------- /tests/unit/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts/HEAD/tests/unit/test_transform.py --------------------------------------------------------------------------------