W3cubDocs

/Statsmodels

statsmodels.stats.multitest.local_fdr

statsmodels.stats.multitest.local_fdr(zscores, null_proportion=1.0, null_pdf=None, deg=7, nbins=30) [source]

Calculate local FDR values for a list of Z-scores.

Parameters:
  • zscores (array-like) – A vector of Z-scores
  • null_proportion (float) – The assumed proportion of true null hypotheses
  • null_pdf (function mapping reals to positive reals) – The density of null Z-scores; if None, use standard normal
  • deg (integer) – The maximum exponent in the polynomial expansion of the density of non-null Z-scores
  • nbins (integer) – The number of bins for estimating the marginal density of Z-scores.
Returns:

fdr – A vector of FDR values

Return type:

array-like

References

B Efron (2008). Microarrays, Empirical Bayes, and the Two-Groups Model. Statistical Science 23:1, 1-22.

Examples

Basic use (the null Z-scores are taken to be standard normal):

>>> from statsmodels.stats.multitest import local_fdr
>>> import numpy as np
>>> zscores = np.random.randn(30)
>>> fdr = local_fdr(zscores)

Use a Gaussian null distribution estimated from the data:

>>> null = EmpiricalNull(zscores)
>>> fdr = local_fdr(zscores, null_pdf=null.pdf)

© 2009–2012 Statsmodels Developers
© 2006–2008 Scipy Developers
© 2006 Jonathan E. Taylor
Licensed under the 3-clause BSD License.
http://www.statsmodels.org/stable/generated/statsmodels.stats.multitest.local_fdr.html