Package jdistlib.disttest
Class MultipleTesting.CensoredTestResult
java.lang.Object
jdistlib.disttest.MultipleTesting.CensoredTestResult
- Enclosing class:
MultipleTesting
Result for a family whose unrecorded p-values are known to exceed a limit.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether the censoring limit rules out every unrecorded hypothesis from rejection at the requested level.double[]Returns adjusted values for recorded tests.boolean[]Returns rejection flags in input order; missing values are false.intReturns the number of recorded hypotheses rejected.doubleReturns the largest rejected recorded raw p-value, or NaN.intReturns the number of unrecorded hypotheses.
-
Method Details
-
getAdjustedPValues
public double[] getAdjustedPValues()Returns adjusted values for recorded tests. Values are conservative whenareDecisionsExact()is false. -
getRejected
public boolean[] getRejected()Returns rejection flags in input order; missing values are false. -
getRejectedCount
public int getRejectedCount()Returns the number of recorded hypotheses rejected. -
getUnobservedCount
public int getUnobservedCount()Returns the number of unrecorded hypotheses. -
areDecisionsExact
public boolean areDecisionsExact()Returns whether the censoring limit rules out every unrecorded hypothesis from rejection at the requested level. -
getThreshold
public double getThreshold()Returns the largest rejected recorded raw p-value, or NaN.
-