Description Usage Arguments Value Author(s) See Also Examples
These functions works like select
and filter
of dplyr
package.
1 2 3 4 5 |
.data |
an object of the |
... |
Same as |
an object of the BAf-class
that contains a part
Mun-Gwan Hong <mun-gwan.hong@scilifelab.se>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data(sba)
# the data of "T2" and "T3"
sba2 <- sba %>% select(id %in% c("T2", "T3"))
summary(sba2)
# the data of the samples on plate 2
sba3 <- sba %>% select(sba == "BA0")
summary(sba3)
data(sba)
# the data of the samples on plate 2
sba4 <- sba %>% filter(plate == "2")
summary(sba4)
# the data of cancer patients only
sba5 <- sba %>% filter(dis == "cancer")
summary(sba5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.