Module Tests

module Tests: sig .. end
Statistical testing.

type test_alternative = 
| Less
| Greater
| TwoSided
type test_result = {
   test_statistic :float;
   test_pvalue :float;
}
val run_test : ?significance_level:float ->
(unit -> test_result) -> [ `NotSignificant | `Significant ]
Assess significance of the statistical test at a given significance_level, which defaults to 0.05.
module T: sig .. end
module ChiSquared: sig .. end
Pearson's chi-squared test.
module KolmogorovSmirnov: sig .. end
module MannWhitneyU: sig .. end
module WilcoxonT: sig .. end
module Sign: sig .. end
module Multiple: sig .. end
Adjustments for multiple comparisons.