anofox-statistics 0.4.2

A comprehensive statistical hypothesis testing library validated against R
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod anova;
pub mod levene;
pub mod ttest;
pub mod yuen;

pub use anova::{
    one_way_anova, repeated_measures_anova, two_way_anova, AnovaKind, AnovaTableRow,
    CorrectedResult, OneWayAnovaResult, RmAnovaResult, SphericityResult, TwoWayAnovaResult,
};
pub use levene::{brown_forsythe, LeveneResult};
pub use ttest::{t_test, Alternative, TTestKind, TTestResult};
pub use yuen::{yuen_test, YuenConfInt, YuenResult};