calc_dist | R Documentation |
'calc_dist()' calculates the discrete joint distribution of vaccination, infection, symptoms, tests, and detections in a population.
calc_dist( vac = list(p_comm = 0.5, p_org = 0.5, eff = 0.5), inf = list(p_incid = 0.001, t_symp = 5, t_presymp = 5), symp = list(p_inf_vac = 0.5, p_inf_unvac = 0.5, p_uninf = 0), test = list(p_symp = 1, p_asymp_vac = 1/7, p_asymp_unvac = 1/7), detect = list(sens = 0.85, spec = 1) )
vac |
'[list(3)]' A named list containing vaccination parameters:
|
inf |
'[list(3)]' A named list containing infection parameters:
|
symp |
'[list(3)]' A named lust containing symptom parameters:
|
test |
'[list(3)]' A named list containing testing parameters:
|
detect |
'[list(2)]' A named list containing detection parameters:
|
A 'data.table'
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.