meanSdPlot {vsn} | R Documentation |
Methods for objects of classes
matrix
,
ExpressionSet
,
vsn
and
MAList
to plot row standard deviations versus row means.
meanSdPlot(x, ranks = TRUE, xlab = ifelse(ranks, "rank(mean)", "mean"), ylab = "sd", pch = ".", plot = TRUE, ...)
x |
An object of class
|
ranks |
Logical, indicating whether the x-axis (means) should be plotted
on the original scale ( |
xlab |
Character, label for the x-axis. |
ylab |
Character, label for the y-axis. |
pch |
Plot symbol. |
plot |
Logical. If |
... |
Further arguments that get passed to plot.default. |
Standard deviation and mean are calculated row-wise from the
expression matrix (in) x
. The scatterplot of these versus each other
allows to visually verify whether there is a dependence of the standard
deviation (or variance) on the mean.
The red dots depict the running median estimator (window-width 10%).
If there is no variance-mean dependence, then the line formed by the
red dots should be approximately horizontal.
A named list with four components: its elements px
and
py
are the x- and y-coordinates of the individual data points
in the plot; its first and second element are the x-coordinates and values of
the running median estimator (the red dots in the plot).
Depending on the value of plot
, the method can also have a side effect, which is to create a plot on the
active graphics device.
Wolfgang Huber
data(kidney) log.na = function(x) log(ifelse(x>0, x, NA)) exprs(kidney) = log.na(exprs(kidney)) meanSdPlot(kidney) ## ...try this out with non-logged data, the lymphoma data, your data...