Package jdistlib.disttest
Class MultipleTesting.AdaptiveFdrResult
java.lang.Object
jdistlib.disttest.MultipleTesting.AdaptiveFdrResult
- Enclosing class:
MultipleTesting
Result of the level-dependent two-stage BKY procedure.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the first-stage estimate of the number of true nulls.doubleReturns the BH level used for the final stage.boolean[]Returns rejection flags in input order; missing values are false.intReturns the final number of rejected hypotheses.doubleReturns q/(1+q), the BH level used in stage one.intReturns the number rejected by the first-stage BH procedure.doubleReturns the largest rejected raw p-value, or NaN.
-
Method Details
-
getRejected
public boolean[] getRejected()Returns rejection flags in input order; missing values are false. -
getRejectedCount
public int getRejectedCount()Returns the final number of rejected hypotheses. -
getStageOneRejections
public int getStageOneRejections()Returns the number rejected by the first-stage BH procedure. -
getEstimatedTrueNulls
public int getEstimatedTrueNulls()Returns the first-stage estimate of the number of true nulls. -
getStageOneLevel
public double getStageOneLevel()Returns q/(1+q), the BH level used in stage one. -
getFinalLevel
public double getFinalLevel()Returns the BH level used for the final stage. -
getThreshold
public double getThreshold()Returns the largest rejected raw p-value, or NaN.
-