Changepoint detection models
Changepoint detection of time series.
For now it is mostly just a wrapper around the [changepoint] crate, with
a common Detector trait to allow for more implementations in future.
Example
use ;
let data = ;
let changepoints = default.detect_changepoints;
// 0 is always included. 6 is the index prior to the changepoint.
assert_eq!;
Credits
The bulk of the actual work is done by the changepoint crate.