Description Usage Arguments Value Author(s) Examples
rbind
and cbind
take one or more
TreeSummarizedExperiment
objects and combine them by columns or rows,
respectively.
1 2 3 4 5 |
... |
One or more |
deparse.level |
See |
A TreeSummarizedExperiment object
Ruizhu Huang
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # rbind works :
# a) TSE without rowTree and without colTree
# b) TSE with rowTree but without colTree
# c) TSE without rowTree but with colTree
# d) TSE with rowTree & colTree
set.seed(1)
# a)
(tse_a <- makeTSE(include.colTree = FALSE))
(tse_b <- makeTSE(include.colTree = FALSE))
# b)
(tse_c <- makeTSE(include.rowTree = FALSE))
(tse_d <- makeTSE(include.rowTree = FALSE))
rbind(tse_a, tse_b)
cbind(tse_c, tse_d)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.