stats_claw/lib.rs
1//! stats-claw — data science on the hot path.
2//!
3//! An in-process, zero-runtime-dependency statistical computing library for
4//! Rust: probability distributions, hypothesis tests, resampling, optimizers,
5//! streaming summaries, and supporting algorithms. The numerics are validated
6//! against committed `scipy.stats` golden fixtures within documented tolerances.
7//!
8//! Each distribution is a plain parameter struct (in [`distributions`]) over
9//! which the behaviour traits (`Pdf`/`Cdf`/`Quantile`/`Sample`/`Moments`/
10//! `LogCdf`) are implemented by hand.
11
12pub mod algorithms;
13pub mod distributions;
14pub mod error;
15pub mod optimizers;
16pub mod resampling;
17pub mod rng;
18pub mod special;
19pub mod streaming;
20pub mod tests_stat;