Description Usage Arguments Value See Also Examples
Removes the specified probes from the dataset.
1 2 3 4 5 6 7 8 | ## S4 method for signature 'RnBSet'
remove.sites(object, probelist, verbose = FALSE)
## S4 method for signature 'RnBeadSet'
remove.sites(object, probelist, verbose = TRUE)
## S4 method for signature 'RnBeadRawSet'
remove.sites(object, probelist, verbose = TRUE)
|
object |
Dataset of interest. |
probelist |
List of probes to be removed in the form of a |
verbose |
if |
The modified dataset.
remove.samples
for removing samples from a methylation dataset
1 2 3 4 5 6 7 | library(RnBeads.hg19)
data(small.example.object)
print(rnb.set.example)
## remove 100 random sites
s2r<-sample.int(nrow(sites(rnb.set.example)), 100)
rnb.set.f<-remove.sites(rnb.set.example, s2r)
print(rnb.set.f)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.