├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── documentation-issue.yml │ └── feature-request.yml ├── images │ └── y_train.png ├── release-drafter.yml └── workflows │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py └── tsfeatures ├── __init__.py ├── compare_with_r.py ├── m4_data.py ├── metrics ├── __init__.py └── metrics.py ├── tests ├── __init__.py ├── test_acf_features.py ├── test_arch_stat.py ├── test_holt_parameters.py ├── test_mutability.py ├── test_pacf_features.py ├── test_pipeline.py ├── test_small_ts.py ├── test_sparsity.py └── test_statistics.py ├── tsfeatures.py ├── tsfeatures_r.py └── utils.py /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/images/y_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/images/y_train.png -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/setup.py -------------------------------------------------------------------------------- /tsfeatures/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | from .tsfeatures import * 5 | -------------------------------------------------------------------------------- /tsfeatures/compare_with_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/compare_with_r.py -------------------------------------------------------------------------------- /tsfeatures/m4_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/m4_data.py -------------------------------------------------------------------------------- /tsfeatures/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | from .metrics import * 5 | -------------------------------------------------------------------------------- /tsfeatures/metrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/metrics/metrics.py -------------------------------------------------------------------------------- /tsfeatures/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tsfeatures/tests/test_acf_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_acf_features.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_arch_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_arch_stat.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_holt_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_holt_parameters.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_mutability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_mutability.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_pacf_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_pacf_features.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_pipeline.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_small_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_small_ts.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_sparsity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_sparsity.py -------------------------------------------------------------------------------- /tsfeatures/tests/test_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tests/test_statistics.py -------------------------------------------------------------------------------- /tsfeatures/tsfeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tsfeatures.py -------------------------------------------------------------------------------- /tsfeatures/tsfeatures_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/tsfeatures_r.py -------------------------------------------------------------------------------- /tsfeatures/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nixtla/tsfeatures/HEAD/tsfeatures/utils.py --------------------------------------------------------------------------------