Uses of Class
org.apache.commons.statistics.inference.PValueMethod
-
Packages that use PValueMethod Package Description org.apache.commons.statistics.inference Classes providing hypothesis testing. -
-
Uses of PValueMethod in org.apache.commons.statistics.inference
Fields in org.apache.commons.statistics.inference declared as PValueMethod Modifier and Type Field Description private PValueMethodKolmogorovSmirnovTest. pValueMethodMethod to compute the p-value.private PValueMethodMannWhitneyUTest. pValueMethodMethod to compute the p-value.private PValueMethodWilcoxonSignedRankTest. pValueMethodMethod to compute the p-value.Methods in org.apache.commons.statistics.inference that return PValueMethod Modifier and Type Method Description private static PValueMethodWilcoxonSignedRankTest. selectMethod(PValueMethod method, int n)Select the method to compute the p-value.static PValueMethodPValueMethod. valueOf(java.lang.String name)Returns 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 PValueMethod Modifier and Type Method Description private static PValueMethodWilcoxonSignedRankTest. selectMethod(PValueMethod method, int n)Select the method to compute the p-value.KolmogorovSmirnovTestKolmogorovSmirnovTest. with(PValueMethod v)Return an instance with the configured p-value method.MannWhitneyUTestMannWhitneyUTest. with(PValueMethod v)Return an instance with the configured p-value method.WilcoxonSignedRankTestWilcoxonSignedRankTest. with(PValueMethod v)Return an instance with the configured p-value method.Constructors in org.apache.commons.statistics.inference with parameters of type PValueMethod Constructor Description KolmogorovSmirnovTest(AlternativeHypothesis alternative, PValueMethod method, boolean strict, org.apache.commons.rng.UniformRandomProvider rng, int iterations)MannWhitneyUTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)WilcoxonSignedRankTest(AlternativeHypothesis alternative, PValueMethod method, boolean continuityCorrection, double mu)
-