parameter_tbl {epiparameter} | R Documentation |
Table of epidemiological distributions
Description
This function subsets the epidemiological parameter library to return only the chosen epidemiological distribution. The results are returned as a data frame containing the disease, epidemiological distribution, probability distribution, author of the study, and the year of publication.
Usage
parameter_tbl(
multi_epiparameter,
disease = "all",
pathogen = "all",
epi_name = "all"
)
Arguments
multi_epiparameter |
Either an |
disease |
A |
pathogen |
A |
epi_name |
A |
Value
A <parameter_tbl>
object which is a subclass of <data.frame>
.
Author(s)
Joshua W. Lambert, Adam Kucharski
Examples
epiparameter_list <- epiparameter_db(disease = "COVID-19")
parameter_tbl(multi_epiparameter = epiparameter_list)
# example filtering an existing list to incubation periods
epiparameter_list <- epiparameter_db(disease = "COVID-19")
parameter_tbl(
multi_epiparameter = epiparameter_list,
epi_name = "incubation period"
)
[Package epiparameter version 0.4.0 Index]