Package | Description |
---|---|
gov.sandia.cognition.statistics.method |
Provides algorithms for evaluating statistical data and conducting statistical inference, particularly frequentist methods.
|
Modifier and Type | Method and Description |
---|---|
static KolmogorovSmirnovConfidence.Statistic |
KolmogorovSmirnovConfidence.evaluateGaussianHypothesis(java.util.Collection<java.lang.Double> data)
Evaluates the Hypothesis that the given data were generated according
to a UnivariateGaussian distribution.
|
static <DomainType extends java.lang.Number> |
KolmogorovSmirnovConfidence.evaluateNullHypothesis(java.util.Collection<? extends DomainType> data1,
CumulativeDistributionFunction<DomainType> function)
This is the standard K-S test for determining if the given data were
generated by the given CDF.
|
KolmogorovSmirnovConfidence.Statistic |
KolmogorovSmirnovConfidence.evaluateNullHypothesis(java.util.Collection<? extends java.lang.Number> data1,
java.util.Collection<? extends java.lang.Number> data2)
This is the standard K-S test for two distributions of data.
|