rbind,TreeSummarizedExperiment-method | R Documentation |
rbind
and cbind
take one or more
TreeSummarizedExperiment
objects and combine them by columns or rows,
respectively.
## S4 method for signature 'TreeSummarizedExperiment'
rbind(..., deparse.level = 1)
## S4 method for signature 'TreeSummarizedExperiment'
cbind(..., deparse.level = 1)
... |
One or more |
deparse.level |
See |
A TreeSummarizedExperiment object
Ruizhu Huang
# 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.