Description Usage Arguments Details Value Author(s) See Also Examples
Summarize distribution of a biom
object in columnwise boxplots.
1 2 |
x |
an object ( |
y |
optionally, a second object for comparison ( |
... |
arguments to |
map |
assignment of |
columns |
subselection of columns ( |
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.
Daniel T. Braithwaite and Kevin P. Keegan
graphics::boxplot
,
BIOM.utils::biom
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #### simple use
xx2t <- transform (xx2, t_Log)
boxplot (xx2t, main="log transformed data", notch=FALSE)
#### plotting raw and normalized against each other
columns (xx2t, "material")
boxplot (xx2t, xx2, x.main="log of data", y.main="raw data", map=c(col="material"),
col=c("freshwater"="darkorange", "hot spring"="slateblue",
"hot spring ; microbial mat"="chocolate4"), notch=FALSE)
#### label by metadata
columns (xx4, "sample_name")
boxplot (transform (xx4, t_Log), names="$$sample.data.sample_name", notch=FALSE)
#### two normalizations plotted against each other
xx2tt <- transform (xx2, t_Threshold=list(entry.min=5), t_Log)
boxplot (xx2t, xx2tt, notch=FALSE, x.main="log transformation",
y.main="low counts removed, then log transformation")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.