rbind2,ncdfFlowList,ANY-method | R Documentation |
Similar to flowCore:rbind2
.
But one needs to first construct a ncdfFlowList and then apply rbind2 to it instead of merging them pairwise
## S4 method for signature 'ncdfFlowList,ANY' rbind2( x, ncdfFile = tempfile(pattern = "ncfs"), dim = 2, compress = 0, samples = NULL )
x |
|
ncdfFile |
|
dim |
|
compress |
|
samples |
|
a new ncdfFlowSet with a new cdf file that combines multiple raw datasets.
library(ncdfFlow) data(GvHD) nc1 <- ncdfFlowSet(GvHD[1:2]) nc2 <- ncdfFlowSet(GvHD[3:4]) nc3 <- ncdfFlowSet(GvHD[5:6]) ncfslist <- ncdfFlowList(list(nc1,nc2,nc3)) nc4 <- rbind2(ncfslist) nc4
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.