|
|
Benjamini-Hochberg Correction (BH)
This function applies the Benjamini-Hochberg multiple testing correcture and returns all False Discovery Rates to which the given p-values are still
significant.
-
rawPValues
:
float seq
-
Returns:
float seq
|
|
|
Benjamini-Hochberg Correction (BH)
'projection' should return a tuple of any identifier and the pValues as float, when applied to 'rawP'
This function applies the Benjamini-Hochberg multiple testing correcture and returns all False Discovery Rates to which the given p-values are still
significant.
Note: corrected pValues are not sorted in original order!
-
projection
:
'a -> 'b * float
-
rawP
:
'a seq
-
Returns:
('b * float) list
|
|
|
Hochberg (step-up) FWER adjustment (NaN-safe)
NaN p-values are ignored in the computation and preserved at their original indices.
-
p
:
float[]
-
Returns:
float[]
|
|
|
Holm–Bonferroni (step-down) FWER adjustment (NaN-safe)
NaN p-values are ignored in the computation and preserved at their original indices.
-
p
:
float[]
-
Returns:
float[]
|