Description Usage Arguments Details Value Author(s) See Also Examples
Group observations by size of the fitted value and plot average squared residual vs average fitted value.
1 2 | plotMeanVar2(y, design = NULL, dispersion = 0, offset = 0, nbins = 100, make.plot = TRUE,
xlab = "Mean", ylab = "Ave. binned standardized residual", ...)
|
y |
numeric matrix of counts, each row represents one genes, each column represents one DGE library. |
design |
numeric matrix giving the design matrix of the GLM. Assumed to be full column rank. Defaults to a intercept column. |
dispersion |
numeric scalar or vector giving the dispersion parameter for each GLM. Can be a scalar giving one value for all genes, or a vector of length equal to the number of genes giving genewise dispersions. |
offset |
numeric vector or matrix giving the offset that is to be included in teh log-linear model predictor. Can be a vector of length equal to the number of libraries, or a matrix of the same size as |
nbins |
scalar giving the number of bins (formed by using the quantiles of the genewise mean expression levels) for which to compute average means and variances for exploring the mean-variance relationship. Default is |
make.plot |
logical, whether or not to plot the mean standardized residual for binned data (binned on expression level). Provides a visualization of the mean-variance relationship. Default is |
xlab |
character string giving the label for the x-axis. Standard graphical parameter. If left as the default, then the x-axis label will be set to "Mean". |
ylab |
character string giving the label for the y-axis. Standard graphical parameter. If left as the default, then the y-axis label will be set to "Ave. binned standardized residual". |
... |
other arguments are passed to |
This function explores the mean-variance relationship in count data.
The function fits a Poisson or NB GLM model to each gene using the appropriate design matrix and computes squared ordinary residuals.
The residuals are standardized by the leverages but not by model variances.
The fitted values are divided into nbins
bins and the mean fitted value and mean squared residual is computed for each bin.
This function is similar in purpose to plotMeanVar
but uses standardized residuals instead of pooled variances.
Produces a mean-variance plot and returns a list with the following component:
mean |
numeric vector of average fitted values for bins |
var |
numeric vector of the average squared residuals for bins |
Davis McCarthy and Gordon Smyth
plotMDS.DGEList
, plotSmear
, plotMD.DGEList
and plotBCV
provide other ways to visualize DGE data.
1 2 3 4 5 |
Loading required package: limma
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.