Uses of Enum
org.apache.commons.statistics.inference.AlternativeHypothesis
Packages that use AlternativeHypothesis
-
Uses of AlternativeHypothesis in org.apache.commons.statistics.inference
Subclasses with type arguments of type AlternativeHypothesis in org.apache.commons.statistics.inferenceModifier and TypeClassDescriptionenumRepresents an alternative hypothesis for a hypothesis test.Fields in org.apache.commons.statistics.inference declared as AlternativeHypothesisModifier and TypeFieldDescriptionprivate final AlternativeHypothesisBinomialTest.alternativeAlternative hypothesis.private final AlternativeHypothesisFisherExactTest.alternativeAlternative hypothesis.private final AlternativeHypothesisKolmogorovSmirnovTest.alternativeAlternative hypothesis.private final AlternativeHypothesisMannWhitneyUTest.alternativeAlternative hypothesis.private final AlternativeHypothesisTTest.alternativeAlternative hypothesis.private final AlternativeHypothesisUnconditionedExactTest.alternativeAlternative hypothesis.private final AlternativeHypothesisWilcoxonSignedRankTest.alternativeAlternative hypothesis.Methods in org.apache.commons.statistics.inference that return AlternativeHypothesisModifier and TypeMethodDescriptionstatic AlternativeHypothesisReturns 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 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.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 AlternativeHypothesisModifierConstructorDescriptionprivateBinomialTest(AlternativeHypothesis alternative) privateFisherExactTest(AlternativeHypothesis alternative) privateKolmogorovSmirnovTest(AlternativeHypothesis alternative, PValueMethod method, boolean strict, org.apache.commons.rng.UniformRandomProvider rng, int iterations) privateMannWhitneyUTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu) privateTTest(AlternativeHypothesis alternative, boolean equalVariances, double mu) privateUnconditionedExactTest(AlternativeHypothesis alternative, UnconditionedExactTest.Method method, int points, boolean optimize) privateWilcoxonSignedRankTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)