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 PValueMethod
KolmogorovSmirnovTest. pValueMethod
Method to compute the p-value.private PValueMethod
MannWhitneyUTest. pValueMethod
Method to compute the p-value.private PValueMethod
WilcoxonSignedRankTest. pValueMethod
Method to compute the p-value.Methods in org.apache.commons.statistics.inference that return PValueMethod Modifier and Type Method Description private static PValueMethod
WilcoxonSignedRankTest. selectMethod(PValueMethod method, int n)
Select the method to compute the p-value.static PValueMethod
PValueMethod. 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 PValueMethod
WilcoxonSignedRankTest. selectMethod(PValueMethod method, int n)
Select the method to compute the p-value.KolmogorovSmirnovTest
KolmogorovSmirnovTest. with(PValueMethod v)
Return an instance with the configured p-value method.MannWhitneyUTest
MannWhitneyUTest. with(PValueMethod v)
Return an instance with the configured p-value method.WilcoxonSignedRankTest
WilcoxonSignedRankTest. 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)
-