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 AlternativeHypothesis
BinomialTest. alternative
Alternative hypothesis.private AlternativeHypothesis
FisherExactTest. alternative
Alternative hypothesis.private AlternativeHypothesis
KolmogorovSmirnovTest. alternative
Alternative hypothesis.private AlternativeHypothesis
MannWhitneyUTest. alternative
Alternative hypothesis.private AlternativeHypothesis
TTest. alternative
Alternative hypothesis.private AlternativeHypothesis
UnconditionedExactTest. alternative
Alternative hypothesis.private AlternativeHypothesis
WilcoxonSignedRankTest. alternative
Alternative hypothesis.Methods in org.apache.commons.statistics.inference that return AlternativeHypothesis Modifier and Type Method Description static AlternativeHypothesis
AlternativeHypothesis. 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 double
WilcoxonSignedRankTest. 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 double
MannWhitneyUTest. calculateExactPValue(double u, int m, int n, AlternativeHypothesis alternative)
Calculate the exact p-value.private static double
WilcoxonSignedRankTest. calculateExactPValue(int w1, int n, AlternativeHypothesis alternative)
Compute the exact p-value.BinomialTest
BinomialTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.FisherExactTest
FisherExactTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.KolmogorovSmirnovTest
KolmogorovSmirnovTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.MannWhitneyUTest
MannWhitneyUTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.TTest
TTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.UnconditionedExactTest
UnconditionedExactTest. with(AlternativeHypothesis v)
Return an instance with the configured alternative hypothesis.WilcoxonSignedRankTest
WilcoxonSignedRankTest. 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)
-