TreatmentData
- Data associated with each treatment, such as Double or Collection of Double@PublicationReference(author="Juliet Popper Shaffer",title="Multiple Hypothesis Testing",type=Journal,year=1995,publication="Annual Review of Psychology",url="http://www.annualreviews.org/doi/pdf/10.1146/annurev.ps.46.020195.003021") @PublicationReference(author="Janez Demsar",title="Statistical Comparisons of Classifiers over Multiple Data Sets",type=Journal,publication="Journal of Machine Learning Research",year=2006,url="http://www.jmlr.org/papers/volume7/demsar06a/demsar06a.pdf") @PublicationReference(author={"Salvador Garcia","Francisco Herrera"},title="An Extension on \"Statistical Comparisons of Classi\ufb01ers over Multiple Data Sets\" for all Pairwise Comparisons",type=Journal,publication="Journal of Machine Learning Research",year=2008,url="http://150.214.190.154/publications/ficheros/2008-Garcia-JMLR.pdf") @PublicationReference(author="Wikipedia",title="Multiple comparisons",type=WebPage,year=2011,url="http://en.wikipedia.org/wiki/Multiple_comparisons") public interface MultipleHypothesisComparison<TreatmentData> extends CloneableSerializable
Modifier and Type | Interface and Description |
---|---|
static interface |
MultipleHypothesisComparison.Statistic
Statistic associated with the multiple hypothesis comparison
|
Modifier and Type | Field and Description |
---|---|
static double |
DEFAULT_UNCOMPENSATED_ALPHA
Default uncompensatedAlpha, 0.05.
|
Modifier and Type | Method and Description |
---|---|
MultipleHypothesisComparison.Statistic |
evaluateNullHypotheses(java.util.Collection<? extends TreatmentData> data)
Evaluates the null hypotheses associated with the given collection
of data.
|
MultipleHypothesisComparison.Statistic |
evaluateNullHypotheses(java.util.Collection<? extends TreatmentData> data,
double uncompensatedAlpha)
Evaluates the null hypotheses associated with the given collection
of data.
|
clone
static final double DEFAULT_UNCOMPENSATED_ALPHA
MultipleHypothesisComparison.Statistic evaluateNullHypotheses(java.util.Collection<? extends TreatmentData> data)
data
- Data from each treatment to considerMultipleHypothesisComparison.Statistic evaluateNullHypotheses(java.util.Collection<? extends TreatmentData> data, double uncompensatedAlpha)
data
- Data from each treatment to consideruncompensatedAlpha
- Uncompensated alpha (p-value threshold) for the multiple comparison
test, must be [0,1]