Uses of Class
org.apache.commons.statistics.inference.AlternativeHypothesis
-
Packages that use AlternativeHypothesis Package Description org.apache.commons.statistics.inference Classes providing hypothesis testing. -
-
Uses of AlternativeHypothesis in org.apache.commons.statistics.inference
Fields in org.apache.commons.statistics.inference declared as AlternativeHypothesis Modifier and Type Field Description private AlternativeHypothesisBinomialTest. alternativeAlternative hypothesis.private AlternativeHypothesisFisherExactTest. alternativeAlternative hypothesis.private AlternativeHypothesisKolmogorovSmirnovTest. alternativeAlternative hypothesis.private AlternativeHypothesisMannWhitneyUTest. alternativeAlternative hypothesis.private AlternativeHypothesisTTest. alternativeAlternative hypothesis.private AlternativeHypothesisUnconditionedExactTest. alternativeAlternative hypothesis.private AlternativeHypothesisWilcoxonSignedRankTest. alternativeAlternative hypothesis.Methods in org.apache.commons.statistics.inference that return AlternativeHypothesis Modifier and Type Method Description static AlternativeHypothesisAlternativeHypothesis. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AlternativeHypothesis[]AlternativeHypothesis. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.statistics.inference with parameters of type AlternativeHypothesis Modifier and Type Method Description private static doubleWilcoxonSignedRankTest. calculateAsymptoticPValue(double wPlus, int n, double z, double c, AlternativeHypothesis alternative, boolean continuityCorrection)Compute the asymptotic p-value using the Cureton normal approximation.(package private) static doubleMannWhitneyUTest. calculateExactPValue(double u, int m, int n, AlternativeHypothesis alternative)Calculate the exact p-value.private static doubleWilcoxonSignedRankTest. calculateExactPValue(int w1, int n, AlternativeHypothesis alternative)Compute the exact p-value.BinomialTestBinomialTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.FisherExactTestFisherExactTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.KolmogorovSmirnovTestKolmogorovSmirnovTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.MannWhitneyUTestMannWhitneyUTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.TTestTTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.UnconditionedExactTestUnconditionedExactTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.WilcoxonSignedRankTestWilcoxonSignedRankTest. with(AlternativeHypothesis v)Return an instance with the configured alternative hypothesis.Constructors in org.apache.commons.statistics.inference with parameters of type AlternativeHypothesis Constructor Description BinomialTest(AlternativeHypothesis alternative)FisherExactTest(AlternativeHypothesis alternative)KolmogorovSmirnovTest(AlternativeHypothesis alternative, PValueMethod method, boolean strict, org.apache.commons.rng.UniformRandomProvider rng, int iterations)MannWhitneyUTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)TTest(AlternativeHypothesis alternative, boolean equalVariances, double mu)UnconditionedExactTest(AlternativeHypothesis alternative, UnconditionedExactTest.Method method, int points, boolean optimize)WilcoxonSignedRankTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)
-