Interface OnlineFdrController

All Known Implementing Classes:
LordPlusPlus, Saffron

public interface OnlineFdrController
A stateful controller for hypotheses arriving in a fixed sequential order.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of rejections so far.
    long
    Returns the number of p-values processed.
    void
    Restores the controller to its newly constructed state.
    test(double pValue)
    Tests the next p-value and advances the controller exactly once.
  • Method Details

    • test

      OnlineFdrDecision test(double pValue)
      Tests the next p-value and advances the controller exactly once.
    • getTestCount

      long getTestCount()
      Returns the number of p-values processed.
    • getRejectionCount

      int getRejectionCount()
      Returns the number of rejections so far.
    • reset

      void reset()
      Restores the controller to its newly constructed state.