rs-stats 2.0.3

Statistics library in rust
Documentation
1
2
3
4
5
6
7
8
pub mod anova;
pub mod chi_square_test;
pub mod t_test;

// Re-export functions to allow users to import them directly from hypothesis_tests module
pub use self::anova::one_way_anova;
pub use self::chi_square_test::{chi_square_goodness_of_fit, chi_square_independence};
pub use self::t_test::{one_sample_t_test, paired_t_test, two_sample_t_test};