| ntpp.default | R Documentation |
ntpp.default computes the ratio of the total number of
tests performed per positive test result and the anticipated proportion of the
untested (those screened out of testing) who would actually test positive.
## Default S3 method:
ntpp(object = NULL, ..., se = NULL, sp = NULL, prev = NULL)
object |
unused, specify |
... |
optional arguments to |
se |
a numeric vector of sensitivities in (0,1) |
sp |
a numeric vector of sensitivities in (0,1) |
prev |
a numeric vector of positive proportions of the testing condition, in (0,1) |
The anticipated number of tests required to detect a single positive nntp is given by
nntp = (SeP + (1 - Sp)(1 - P)) / SeP
where Se is sensitivity, P is prevalence and Sp is specificity. The anticipated positive proportion among those screened out is given by
Puntested = ((1 - Se)P) / ((1 - Se)P + Sp (1 - P))
ntpp.default returns a data frame containing the
following columns:
sensitivitythe sensitivity (proportion)
specificitythe specificity (proportion)
prevpositivity proportion of the test condition
ntppanticipated total tests required per positive result
prev_untestedanticipated positive proportion among the untested
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.