epi.calc {RSurveillance} | R Documentation |
Effective probability of infection (EPI)
Description
Calculates effective probability of infection (adjusted design prevalence) for each risk group for risk-based surveillance activities
Usage
epi.calc(pstar, rr, ppr)
Arguments
pstar |
design prevalence (scalar) |
rr |
relative risk values (vector of values corresponding to the number of risk strata) |
ppr |
population proportions corresponding to rr values (vector of equal length to rr) |
Value
list of 2 elements, a vector of EPI values and a vector of corresponding adjusted risks (in corresponding order to rr)
Examples
# examples for epi.calc
epi.calc(0.1, c(5, 1), c(0.1, 0.9))
epi.calc(0.02, c(5, 3, 1), c(0.1, 0.1, 0.8))
[Package RSurveillance version 0.2.1 Index]