.codecov.yml
.gitignore
.pre-commit-config.yaml
.readthedocs.yml
LICENSE
MANIFEST.in
Makefile
NOTES.md
README.md
pyproject.toml
requirements-test.txt
setup.cfg
.github/release-drafter.yml
.github/workflows/release-drafter.yml
.github/workflows/release.yaml
.github/workflows/tests.yaml
build_tools/check_install_from_test_pypi.sh
build_tools/fail_on_missing_init_files.sh
build_tools/make_release.py
docs/Makefile
docs/source/conf.py
docs/source/index.rst
docs/source/releases.rst
docs/source/_static/custom_notebook.css
docs/source/_static/plotly_resize.js
docs/source/_static/images/changepoint_illustration.png
docs/source/_static/images/segment_anomaly_illustration.png
docs/source/_static/images/segmentation_illustration.png
docs/source/_templates/class.rst
docs/source/_templates/functions.rst
docs/source/api_reference/anomaly_detectors.rst
docs/source/api_reference/anomaly_scores.rst
docs/source/api_reference/base.rst
docs/source/api_reference/change_detectors.rst
docs/source/api_reference/change_scores.rst
docs/source/api_reference/compose.rst
docs/source/api_reference/costs.rst
docs/source/api_reference/datasets.rst
docs/source/api_reference/index.rst
docs/source/api_reference/penalties.rst
docs/source/api_reference/utils.rst
docs/source/developer_guide/code_style.rst
docs/source/developer_guide/contributing.rst
docs/source/developer_guide/for_maintainers.rst
docs/source/developer_guide/index.rst
docs/source/developer_guide/setup.rst
docs/source/user_guide/getting_started.ipynb
docs/source/user_guide/index.rst
docs/source/user_guide/anomaly_detection/index.rst
docs/source/user_guide/anomaly_detection/intro.ipynb
docs/source/user_guide/change_detection/index.rst
docs/source/user_guide/change_detection/intro.ipynb
docs/source/user_guide/concepts/detectors.ipynb
docs/source/user_guide/concepts/index.rst
docs/source/user_guide/concepts/interval_scores.ipynb
docs/source/user_guide/interval_scores/change_scores.ipynb
docs/source/user_guide/interval_scores/costs.ipynb
docs/source/user_guide/interval_scores/index.rst
docs/source/user_guide/interval_scores/local_anomaly_scores.ipynb
docs/source/user_guide/interval_scores/savings.ipynb
docs/source/user_guide/penalties/constant_penalties.ipynb
docs/source/user_guide/penalties/index.rst
docs/source/user_guide/penalties/other_penalties.ipynb
extension_templates/change_score.py
extension_templates/cost.py
interactive/benchmark.py
interactive/compare_detector_outputs.py
interactive/explore_ESAC.py
interactive/explore_capa.py
interactive/explore_circular_binseg.py
interactive/explore_edf_cost_with_pelt.py
interactive/explore_evaluators.py
interactive/explore_moscore.py
interactive/explore_pelt.py
interactive/explore_seeded_binseg.py
interactive/explore_stat_threshold_anomaliser.py
interactive/multivariate_t_fitting.py
skchange/__init__.py
skchange.egg-info/PKG-INFO
skchange.egg-info/SOURCES.txt
skchange.egg-info/dependency_links.txt
skchange.egg-info/requires.txt
skchange.egg-info/top_level.txt
skchange/anomaly_detectors/__init__.py
skchange/anomaly_detectors/_anomalisers.py
skchange/anomaly_detectors/_capa.py
skchange/anomaly_detectors/_circular_binseg.py
skchange/anomaly_detectors/base.py
skchange/anomaly_detectors/tests/__init__.py
skchange/anomaly_detectors/tests/test_anomaly_detectors.py
skchange/anomaly_detectors/tests/test_capa.py
skchange/anomaly_detectors/tests/test_circular_binary_segmentation.py
skchange/anomaly_scores/__init__.py
skchange/anomaly_scores/_from_cost.py
skchange/anomaly_scores/_l2_saving.py
skchange/anomaly_scores/tests/__init__.py
skchange/anomaly_scores/tests/test_all_savings.py
skchange/anomaly_scores/tests/test_from_cost.py
skchange/base/__init__.py
skchange/base/_base_detector.py
skchange/base/_base_interval_scorer.py
skchange/base/tests/__init__.py
skchange/base/tests/test_base_interval_scorer.py
skchange/change_detectors/__init__.py
skchange/change_detectors/_crops.py
skchange/change_detectors/_moving_window.py
skchange/change_detectors/_pelt.py
skchange/change_detectors/_seeded_binseg.py
skchange/change_detectors/base.py
skchange/change_detectors/tests/__init__.py
skchange/change_detectors/tests/test_change_detectors.py
skchange/change_detectors/tests/test_crops.py
skchange/change_detectors/tests/test_moving_window.py
skchange/change_detectors/tests/test_pelt.py
skchange/change_detectors/tests/test_seeded_binseg.py
skchange/change_scores/__init__.py
skchange/change_scores/_continuous_linear_trend_score.py
skchange/change_scores/_cusum.py
skchange/change_scores/_esac_score.py
skchange/change_scores/_from_cost.py
skchange/change_scores/_multivariate_gaussian_score.py
skchange/change_scores/tests/__init__.py
skchange/change_scores/tests/test_all_change_scores.py
skchange/change_scores/tests/test_continuous_linear_trend_score.py
skchange/change_scores/tests/test_from_cost.py
skchange/change_scores/tests/test_mv_gaussian_score.py
skchange/compose/__init__.py
skchange/compose/penalised_score.py
skchange/compose/tests/__init__.py
skchange/compose/tests/test_penalised_score.py
skchange/costs/__init__.py
skchange/costs/_empirical_distribution_cost.py
skchange/costs/_gaussian_cost.py
skchange/costs/_l1_cost.py
skchange/costs/_l2_cost.py
skchange/costs/_laplace_cost.py
skchange/costs/_linear_regression_cost.py
skchange/costs/_linear_trend_cost.py
skchange/costs/_multivariate_gaussian_cost.py
skchange/costs/_multivariate_t_cost.py
skchange/costs/_poisson_cost.py
skchange/costs/_utils.py
skchange/costs/base.py
skchange/costs/tests/__init__.py
skchange/costs/tests/test_all_costs.py
skchange/costs/tests/test_base_cost.py
skchange/costs/tests/test_empirical_distribution.py
skchange/costs/tests/test_gaussian_var_cost.py
skchange/costs/tests/test_l2_cost.py
skchange/costs/tests/test_laplace_cost.py
skchange/costs/tests/test_linear_regression_cost.py
skchange/costs/tests/test_linear_trend_cost.py
skchange/costs/tests/test_multivariate_gaussian_cost.py
skchange/costs/tests/test_multivariate_t_cost.py
skchange/costs/tests/test_poisson_cost.py
skchange/costs/tests/test_utils.py
skchange/datasets/__init__.py
skchange/datasets/_data_loaders.py
skchange/datasets/_generate.py
skchange/datasets/_generate_linear_trend.py
skchange/datasets/_generate_normal.py
skchange/datasets/_generate_regression.py
skchange/datasets/_utils.py
skchange/datasets/data/hvac_system/data.csv
skchange/datasets/tests/__init__.py
skchange/datasets/tests/test_data_loaders.py
skchange/datasets/tests/test_generate.py
skchange/datasets/tests/test_generate_linear_trend.py
skchange/datasets/tests/test_generate_normal.py
skchange/datasets/tests/test_generate_regression.py
skchange/penalties/__init__.py
skchange/penalties/_constant_penalties.py
skchange/penalties/_linear_penalties.py
skchange/penalties/_nonlinear_penalties.py
skchange/penalties/tests/__init__.py
skchange/penalties/tests/test_penalties.py
skchange/tests/__init__.py
skchange/tests/test_all_detectors.py
skchange/tests/test_all_estimators.py
skchange/tests/test_all_interval_scorers.py
skchange/utils/__init__.py
skchange/utils/plotting.py
skchange/utils/benchmarking/__init__.py
skchange/utils/benchmarking/profiler.py
skchange/utils/numba/__init__.py
skchange/utils/numba/_soft_import.py
skchange/utils/numba/general.py
skchange/utils/numba/stats.py
skchange/utils/numba/tests/__init__.py
skchange/utils/numba/tests/test_general.py
skchange/utils/numba/tests/test_soft_imports.py
skchange/utils/numba/tests/test_stats.py
skchange/utils/tests/__init__.py
skchange/utils/validation/__init__.py
skchange/utils/validation/cuts.py
skchange/utils/validation/data.py
skchange/utils/validation/generation.py
skchange/utils/validation/interval_scorer.py
skchange/utils/validation/parameters.py
skchange/utils/validation/penalties.py
skchange/utils/validation/tests/__init__.py
skchange/utils/validation/tests/test_cuts_validation.py
skchange/utils/validation/tests/test_parameters.py
skchange/utils/validation/tests/test_penalty_validation.py