Description Usage Arguments Details Value Note Author(s) See Also Examples
Display heatmap of a biom
object with optional row and column dendrograms.
1 2 |
x |
an object ( |
... |
arguments to |
map |
assignment of |
rows |
subselection of rows ( |
columns |
subselection of columns ( |
rerender |
previous computation to reuse in this call ( |
Complete technical documentation is forthcoming. For the current preliminary release, please refer to the examples provided.
Complete technical documentation is forthcoming. For the current preliminary release, please refer to the examples provided.
The function image()
is declared S3 generic in the base package graphics
.
The method documented here does not apply any existing methods, however,
but rather relies on entirely different libraries for computation and graphical rendering.
See reference below.
Daniel T. Braithwaite and Kevin P. Keegan
gplots::heatmap.2
,
BIOM.utils::biom
1 2 3 4 5 6 7 8 9 10 11 12 | #### simple heatmap; using log transformation makes interesting things more apparent
image (xx2)
xx2t <- transform (xx2, t_Log)
image (xx2t, labCol="$$project.id")
#### clustering analysis restricted to Archaea
image (xx2t, labCol="$$project.id", rows=rows(xx2t,"taxonomy1")=="Archaea")
#### clustering analysis restricted by significance test p values
p <- rowstats (xx2t, test="t-test-unpaired", groups="$$material") $ p.value
p [is.na(p)] <- p [is.nan(p)] <- FALSE
image (xx2t [rows = p < 0.05, ], labCol="$$material")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.