Title Calculate attack rate from basic reproduction number
Title Calculate attack rate from basic reproduction number
R02AR(R0, tol =0.01)
Arguments
R0: a value or vector of values representing the basic reproduction number, must be >=0
tol: a single >=0 value giving the tolerance for the calculated attack rate
Returns
AR, the attack rate, calculated using the relationship: R0 = -log(1-AR)/AR
Examples
## Calculate the attack rate for a specific value of the reproduction numberR02AR(2)# returns the AR for an R0 of 2## plot the relationship between R0 and attack ratex <- seq(1.01,5,0.01)plot(x, R02AR(x), type ="l", xlab ="R0", ylab ="Attack rate")