mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Statistical hypothesis tests
//!
//! Fore more information:
//! <https://en.wikipedia.org/wiki/Statistical_hypothesis_testing>

mod chisquare;
mod g;
mod t;

#[allow(clippy::module_inception)]
mod test;

pub use self::{chisquare::ChiSquare, g::G, t::T, test::Test};