Description Usage Arguments Details Value Note Author(s) References See Also Examples
Squeeze a set of sample variances together by computing empirical Bayes posterior means.
1 |
var |
numeric vector of independent sample variances. |
df |
numeric vector of degrees of freedom for the sample variances. |
covariate |
if non- |
robust |
logical, should the estimation of |
winsor.tail.p |
numeric vector of length 1 or 2, giving left and right tail proportions of |
This function implements an empirical Bayes algorithm proposed by Smyth (2004).
A conjugate Bayesian hierarchical model is assumed for a set of sample variances. The hyperparameters are estimated by fitting a scaled F-distribution to the sample variances. The function returns the posterior variances and the estimated hyperparameters.
Specifically, the sample variances var
are assumed to follow scaled chi-squared distributions, conditional on the true variances,
and an scaled inverse chi-squared prior is assumed for the true variances.
The scale and degrees of freedom of this prior distribution are estimated from the values of var
.
The effect of this function is to squeeze the variances towards a common value, or to a global trend if a covariate
is provided.
The squeezed variances have a smaller expected mean square error to the true variances than do the sample variances themselves.
If covariate
is non-null, then the scale parameter of the prior distribution is assumed to depend on the covariate.
If the covariate is average log-expression, then the effect is an intensity-dependent trend similar to that in Sartor et al (2006).
robust=TRUE
implements the robust empirical Bayes procedure of Phipson et al (2016) which allows some of the var
values to be outliers.
A list with components
var.post |
numeric vector of posterior variances. |
var.prior |
location of prior distribution. A vector if |
df.prior |
degrees of freedom of prior distribution. A vector if |
This function is called by eBayes
, but beware a possible confusion with the output from that function.
The values var.prior
and var.post
output by squeezeVar
correspond to the quantities s2.prior
and s2.post
output by eBayes
, whereas var.prior
output by eBayes
relates to a different parameter.
Gordon Smyth
Phipson, B, Lee, S, Majewski, IJ, Alexander, WS, and Smyth, GK (2016). Robust hyperparameter estimation protects against hypervariable genes and improves power to detect differential expression. Annals of Applied Statistics 10, 946-963. http://projecteuclid.org/euclid.aoas/1469199900
Sartor MA, Tomlinson CR, Wesselkamper SC, Sivaganesan S, Leikauf GD, Medvedovic M (2006). Intensity-based hierarchical Bayes method improves testing for differentially expressed genes in microarray experiments. BMC bioinformatics 7, 538.
Smyth, G. K. (2004). Linear models and empirical Bayes methods for assessing differential expression in microarray experiments. Statistical Applications in Genetics and Molecular Biology 3, Article 3. http://www.statsci.org/smyth/pubs/ebayes.pdf
This function is called by eBayes
.
This function calls fitFDist
.
An overview of linear model functions in limma is given by 06.LinearModels.
1 2 | s2 <- rchisq(20,df=5)/5
squeezeVar(s2, df=5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.