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
//! Positive-support distributions: exponential, gamma, weibull, lognormal, beta.
//! Each file implements the behaviour traits from the parent module for its
//! parameter struct.

pub mod beta;
pub mod exponential;
pub mod gamma;
pub mod lognormal;
pub mod weibull;