sesameQC_calcStats | R Documentation |
It is a function to call one or multiple sesameQC_calcStats functions
sesameQC_calcStats(sdf, funs = NULL)
sdf |
a SigDF object |
funs |
a sesameQC_calcStats_* function or a list of them default to all functions. One can also use a string such as "detection" or c("detection", "intensity") to reduce typing |
currently supporting: detection, intensity, numProbes, channel, dyeBias, betas
a sesameQC object
sesameDataCache() # if not done yet
sdf <- sesameDataGet('EPIC.1.SigDF')
sesameQC_calcStats(sdf)
sesameQC_calcStats(sdf, "detection")
sesameQC_calcStats(sdf, c("detection", "channel"))
## retrieve stats as a list
sesameQC_getStats(sesameQC_calcStats(sdf, "detection"))
## or as data frames
as.data.frame(sesameQC_calcStats(sdf, "detection"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.