Description Usage Arguments Details Value Author(s) References See Also Examples
These functions create an expression matrix plot for an ISA module. The gene and sample scores are also plotted.
1 2 3 |
eset |
An |
norm |
Character constant, specifies whether and how to normalize the expression values to plot. ‘raw’ plots the raw expression values, ‘feature’ the expression values scaled and centered for each feature (=gene) separately and if ‘sample’ is specified then the expression values are centered and scaled separately for each sample. |
modules |
An |
which |
Numeric scalar, which module to plot. |
scores |
Logical scalar, whether to plot the scores as well. |
epo |
An object returned by |
expPlotCreate
creates an object that contains all data for
performing the image plot and returns it. The reason for not plotting
it directly is, that the size of the plot is usually different in
different cases, and the opening of the graphics device
is delayed until expPlotCreate
returns.
In the returned object, the weight
and height
entries
give the optimal size of the image, in pixels.
expPlot
creates the expression plot.
expPlotColbar
plots a color bar for the expression plot.
expPlotCreate
returns an ISAexpPlot
object. It is a
named list and has several entries, the important ones:
width |
Numeric scalar, the optimal width of the plot. |
height |
Numeric scalar, the optimal height of the plot. |
expPlot
returns, invisibly, a named list with members:
coords |
A list with two entries: |
gene.width |
Numeric scalar, the width of one box on the image plot, in pixels; if the image size is exactly the suggested one. |
cond.height |
Numeric scalar, the height of one box on the image plot, in pixels; if the image size is exactly the suggested one. |
expPlotColbar
returns NULL
, invisibly.
Gabor Csardi csardi.gabor@gmail.com
Bergmann S, Ihmels J, Barkai N: Iterative signature algorithm for the analysis of large-scale gene expression data Phys Rev E Stat Nonlin Soft Matter Phys. 2003 Mar;67(3 Pt 1):031902. Epub 2003 Mar 11.
The vignette in the eisa
package for other ISA
visualizations. The ExpressionView
package for an interactive
version.
1 2 3 4 5 6 7 8 9 10 | data(ALLModulesSmall)
library(ALL)
data(ALL)
ep <- expPlotCreate(ALL, ALLModulesSmall, 1)
ep
if (interactive()) {
expPlot(ep)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.