@Retention(value=RUNTIME)
@Documented
@Target(value=TYPE)
public @interface ConfidenceTestAssumptions
Modifier and Type | Required Element and Description |
---|---|
java.lang.String[] |
assumptions
List of assumptions of the confidence test.
|
boolean |
dataPaired
Flag is the data are paired together during the test.
|
boolean |
dataSameSize
Flag if the data must be the same size.
|
java.lang.String[] |
description
High-level description of the confidence test.
|
java.lang.Class<? extends ClosedFormDistribution<?>> |
distribution
Distribution used to evaluate the null hypothesis probability.
|
java.lang.String |
name
Most-common name of the confidence test.
|
java.lang.String |
nullHypothesis
Description of the null hypothesis.
|
PublicationReference[] |
reference
A reference to a publication providing a basis for the confidence test.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String[] |
alsoKnownAs
Other names that the test may be known as.
|
public abstract java.lang.String name
public abstract java.lang.String[] description
public abstract java.lang.String nullHypothesis
public abstract java.lang.Class<? extends ClosedFormDistribution<?>> distribution
public abstract java.lang.String[] assumptions
public abstract boolean dataSameSize
public abstract boolean dataPaired
public abstract PublicationReference[] reference