stats-claw 0.1.0

Data science on the hot path: in-process, zero-dependency statistical computing for Rust (distributions, hypothesis tests, resampling) validated against scipy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Change-point detection algorithms.
//!
//! The single member is PELT (Pruned Exact Linear Time), which finds the
//! penalized-optimal segmentation of a signal. It lives in the `pelt` submodule
//! and is re-exported here so callers name `change_point::pelt_l2` without the
//! submodule path.
//!
//! Change points are discrete indices, so the equivalence suite compares stats-claw's
//! breakpoints to `ruptures` for exact set equality — there is no tolerance for an
//! off-by-one segment boundary.

mod pelt;

pub use pelt::pelt_l2;