Uses of Enum
org.apache.commons.statistics.inference.PValueMethod
Packages that use PValueMethod
-
Uses of PValueMethod in org.apache.commons.statistics.inference
Subclasses with type arguments of type PValueMethod in org.apache.commons.statistics.inferenceModifier and TypeClassDescriptionenumRepresents a method for computing a p-value for a test statistic.Fields in org.apache.commons.statistics.inference declared as PValueMethodModifier and TypeFieldDescriptionprivate final PValueMethodKolmogorovSmirnovTest.pValueMethodMethod to compute the p-value.private final PValueMethodMannWhitneyUTest.pValueMethodMethod to compute the p-value.private final PValueMethodWilcoxonSignedRankTest.pValueMethodMethod to compute the p-value.Methods in org.apache.commons.statistics.inference that return PValueMethodModifier and TypeMethodDescriptionprivate static PValueMethodWilcoxonSignedRankTest.selectMethod(PValueMethod method, int n) Select the method to compute the p-value.static PValueMethodReturns the enum constant of this type with the specified name.static PValueMethod[]PValueMethod.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 PValueMethodModifier and TypeMethodDescriptionprivate static PValueMethodWilcoxonSignedRankTest.selectMethod(PValueMethod method, int n) Select the method to compute the p-value.KolmogorovSmirnovTest.with(PValueMethod v) Return an instance with the configured p-value method.MannWhitneyUTest.with(PValueMethod v) Return an instance with the configured p-value method.WilcoxonSignedRankTest.with(PValueMethod v) Return an instance with the configured p-value method.Constructors in org.apache.commons.statistics.inference with parameters of type PValueMethodModifierConstructorDescriptionprivateKolmogorovSmirnovTest(AlternativeHypothesis alternative, PValueMethod method, boolean strict, org.apache.commons.rng.UniformRandomProvider rng, int iterations) privateMannWhitneyUTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu) privateWilcoxonSignedRankTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)