stats-claw 0.2.1

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
//! Sampling-distribution family: chi-squared, Student's t, and F. Each file
//! implements the behaviour traits from the parent module for its parameter
//! struct.

pub mod chi_squared;
pub mod f_dist;
pub mod students_t;