Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 2.89 KB

README.md

File metadata and controls

27 lines (22 loc) · 2.89 KB

Online Multiple Hypothesis Testing

python contributions welcome License Code style: black start with why

The vast majority of implementations of online method for FDR control are either part of an experimental setup, that does not straight-forwardly generalize towards applications outside this setup, or are geared towards tests for which all test results are already available (i.e. they do not have an actual online API).

For that reason, this repository implements a wide range of methods for FDR/FWER control for actual online multiple hypothesis testing with an intuitive test_one() method:

This work is inspired by the R package 'onlineFDR'. This package, and most of its methods, are largely validated by the implementations of said package. Key differentiator is the design choice in regard to method calls for sequential testing, as this package allows for truly temporal applications ('onlineFDR' requires a [static] data.frame for testing).