1 2 3 4 5 6 7 8 9 10 11 12
//! Statistical hypothesis tests //! //! Fore more information: //! <a href="https://en.wikipedia.org/wiki/Statistical_hypothesis_testing">https://en.wikipedia //! .org/wiki/Statistical_hypothesis_testing</a> mod chisquare; mod g; mod t; mod test; pub use self::{chisquare::ChiSquare, g::G, t::T, test::Test};