Description Usage Arguments Details Value Author(s) References Examples
View source: R/estErrorRates.r
Estimate error rates: false discovery rate (FDR), false non-discovery rate (FNDR), false positve rate (FPR), and false negative rate (FNR) for data with known cluster membership for gene probes.
1 | estErrorRates(memGenes2.est, memGenes2.true)
|
memGenes2.est |
estimated cluster membership for gene probes. |
memGenes2.true |
true cluster membership for gene probes. |
FDR is the proportion of detected differentially expressed (DE) gene probes that are truly non-differentially expressed (NE) gene probes among all detected DE gene probes.
FNDR is the proportion of detected NE gene probes that are truly DE gene probes among all detected NE gene probes.
FPR is the proportion of detected DE gene probes that are truly NE gene probes among all truly NE gene probes.
FNR is the proportion of detected NE gene probes that are truly DE gene probes among all truly DE gene probes.
A vector of 4 elements: FDR, FNDR, FPR, and FNR.
Yunfeng Li <colinlee1999@gmail.com> and Weiliang Qiu <stwxq@channing.harvard.edu>
Li Y, Morrow J, Raby B, Tantisira K, Weiss ST, Huang W, Qiu W. (2017), <doi:10.1371/journal.pone.0174602>
1 2 3 4 5 6 | memGenes2.est = c(1, 1, 1, 0, 0, 0)
memGenes2.true = c(1, 0, 1, 0, 0, 0)
err = estErrorRates(memGenes2.est = memGenes2.est,
memGenes2.true = memGenes2.true)
print(err)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.