Uses of Enum
org.apache.commons.statistics.inference.AlternativeHypothesis
Packages that use AlternativeHypothesis
-
Uses of AlternativeHypothesis in org.apache.commons.statistics.inference
Fields in org.apache.commons.statistics.inference declared as AlternativeHypothesisModifier and TypeFieldDescriptionprivate final AlternativeHypothesis
BinomialTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
FisherExactTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
KolmogorovSmirnovTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
MannWhitneyUTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
TTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
UnconditionedExactTest.alternative
Alternative hypothesis.private final AlternativeHypothesis
WilcoxonSignedRankTest.alternative
Alternative hypothesis.Methods in org.apache.commons.statistics.inference that return AlternativeHypothesisModifier and TypeMethodDescriptionstatic AlternativeHypothesis
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 AlternativeHypothesisModifier and TypeMethodDescriptionprivate 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.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.FisherExactTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.KolmogorovSmirnovTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.MannWhitneyUTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.TTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.UnconditionedExactTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.WilcoxonSignedRankTest.with
(AlternativeHypothesis v) Return an instance with the configured alternative hypothesis.Constructors in org.apache.commons.statistics.inference with parameters of type AlternativeHypothesisModifierConstructorDescriptionprivate
BinomialTest
(AlternativeHypothesis alternative) private
FisherExactTest
(AlternativeHypothesis alternative) private
KolmogorovSmirnovTest
(AlternativeHypothesis alternative, PValueMethod method, boolean strict, org.apache.commons.rng.UniformRandomProvider rng, int iterations) private
MannWhitneyUTest
(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu) private
TTest
(AlternativeHypothesis alternative, boolean equalVariances, double mu) private
UnconditionedExactTest
(AlternativeHypothesis alternative, UnconditionedExactTest.Method method, int points, boolean optimize) private
WilcoxonSignedRankTest
(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)