Description Usage Arguments Examples
Simliar to [[
, and there are cerntain ways to
reduce the disk IO and optimize the speed.
1 2 3 4 5 6 7 8 9 10 11 |
x |
a |
i |
a |
j |
a |
use.exprs |
a |
... |
other arguments. not used. |
1 2 3 4 5 6 7 8 9 10 11 12 | data(GvHD)
nc <- ncdfFlowSet(GvHD[1:2])
samples <- sampleNames(nc)
sn <- samples[1]
#return the entire flowFrame
fr <- nc[[sn]]
#access the flowFrame meta data without loading the raw event data from disk
nc[[sn, use.exprs = FALSE]]
#only read a subset of channels (more efficient than reading entire data set)
nc[[sn, 1:2]]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.