This is an automated email from the ASF dual-hosted git repository.
henrik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/otava.git
from 4e176a5 Add e2e tests covering CSV and PostgreSQL usage (#103)
add f75f356 Replacing signal_processing_algorithms with internal
implementation
add a59a3cf Correct implementation of bisection method
add f8f81d8 Support for Python 3.8 and 3.9
add 6aad9db Renamed variables, fixed typos, updated comments. Switched
indexing to match slice object notations.
new 5c5abc7 Merge pull request #96 from Sowiks/master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
otava/analysis.py | 248 ++++---
.../change_point_divisive/__init__.py | 5 -
otava/change_point_divisive/base.py | 110 +++
otava/change_point_divisive/calculator.py | 190 +++++
otava/change_point_divisive/detector.py | 63 ++
otava/change_point_divisive/significance_test.py | 77 ++
otava/series.py | 36 +-
pyproject.toml | 2 +-
tests/analysis_test.py | 47 +-
tests/change_point_divisive_test.py | 115 +++
tests/tigerbeetle_test.py | 18 +-
uv.lock | 795 ++++++++++++---------
12 files changed, 1214 insertions(+), 492 deletions(-)
copy tests/resources/histostat_test_config.yaml =>
otava/change_point_divisive/__init__.py (89%)
create mode 100644 otava/change_point_divisive/base.py
create mode 100644 otava/change_point_divisive/calculator.py
create mode 100644 otava/change_point_divisive/detector.py
create mode 100644 otava/change_point_divisive/significance_test.py
create mode 100644 tests/change_point_divisive_test.py