Skip to main content

stats_claw/
lib.rs

1//! stats-claw — in-process, zero-dependency statistical computing for Rust.
2//!
3//! Probability distributions, hypothesis tests, resampling, optimizers,
4//! streaming summaries, likelihood estimation, and supporting algorithms.
5//! Each distribution is a plain parameter struct over which the behaviour
6//! traits (`Pdf`/`Cdf`/`Quantile`/`Sample`/`Moments`) are implemented by hand.
7
8pub mod algorithms;
9pub mod distributions;
10pub mod error;
11pub mod likelihood;
12/// Framework-internal shared numeric primitives (count widening, mean, variance).
13mod numeric;
14pub mod optimizers;
15pub mod resampling;
16pub mod rng;
17pub mod special;
18pub mod streaming;
19pub mod tests_stat;