Description Usage Arguments Details Value Examples
sets ntp
predictions to NA based on p-value or FDR
thresholds
1 |
res |
a data frame, result from |
pValue |
a numeric, predictions with higher p-values are set to NA. |
FDR |
a numeric, predictions with higher FDR are set to NA. |
verbose |
logical, whether console messages are to be displayed. |
Replaces low-confidence predictions with NA.
A data.frame where res$prediction's are set to NA based on p-value or FDR threshold.
1 2 3 4 5 | emat <- ematAdjust(crcTCGAsubset, normMethod = "quantile")
res <- ntp(emat, templates.CMS, doPlot=TRUE, nPerm=100)
res <- subSetNA(res, pValue=.1)
res <- subSetNA(res, FDR=.1)
table(res$prediction, useNA="always")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.