mne.stats.fdr_correction(pvals, alpha=0.05, method=’indep’)[source]¶P-value correction with False Discovery Rate (FDR).
Correction for multiple comparison using FDR.
This covers Benjamini/Hochberg for independent or positively correlated and Benjamini/Yekutieli for general or negatively correlated tests.
| Parameters: | pvals : array_like 
 alpha : float 
 method : ‘indep’ | ‘negcorr’ 
  | 
|---|---|
| Returns: | reject : array, bool 
 pval_corrected : array 
  | 
Notes
Reference: Genovese CR, Lazar NA, Nichols T. Thresholding of statistical maps in functional neuroimaging using the false discovery rate. Neuroimage. 2002 Apr;15(4):870-8.
mne.stats.fdr_correction¶