Samples a contact survey
contact_matrix(
survey,
countries = NULL,
survey.pop,
age.limits,
filter,
counts = FALSE,
symmetric = FALSE,
split = FALSE,
sample.participants = FALSE,
estimated.participant.age = c("mean", "sample", "missing"),
estimated.contact.age = c("mean", "sample", "missing"),
missing.participant.age = c("remove", "keep"),
missing.contact.age = c("remove", "sample", "keep", "ignore"),
weights = NULL,
weigh.dayofweek = FALSE,
weigh.age = FALSE,
weight.threshold = NA,
sample.all.age.groups = FALSE,
return.part.weights = FALSE,
return.demography = NA,
per.capita = FALSE,
...
)
a contact matrix, and the underlying demography of the surveyed population
a survey()
object
limit to one or more countries; if not given, will use all countries in the survey; these can be given as country names or 2-letter (ISO Alpha-2) country codes
survey population -- either a data frame with columns 'lower.age.limit' and 'population', or a character vector giving the name(s) of a country or countries from the list that can be obtained via wpp_countries
; if not given, will use the country populations from the chosen countries, or all countries in the survey if countries
is not given
lower limits of the age groups over which to construct the matrix
any filters to apply to the data, given as list of the form (column=filter_value) - only contacts that have 'filter_value' in 'column' will be considered. If multiple filters are given, they are all applied independently and in the sequence given.
whether to return counts (instead of means)
whether to make matrix symmetric, such that \(c_{ij}N_i = c_{ji}N_j\).
whether to split the contact matrix into the mean number of contacts, in each age group (split further into the product of the mean number of contacts across the whole population (mean.contacts
), a normalisation constant (normalisation
) and age-specific variation in contacts (contacts
)), multiplied with an assortativity matrix (assortativity
) and a population multiplier (demograpy
). For more detail on this, see the "Getting Started" vignette.
whether to sample participants randomly (with replacement); done multiple times this can be used to assess uncertainty in the generated contact matrices. See the "Bootstrapping" section in the vignette for how to do this..
if set to "mean" (default), people whose ages are given as a range (in columns named "..._est_min" and "..._est_max") but not exactly (in a column named "..._exact") will have their age set to the mid-point of the range; if set to "sample", the age will be sampled from the range; if set to "missing", age ranges will be treated as missing
if set to "mean" (default), contacts whose ages are given as a range (in columns named "..._est_min" and "..._est_max") but not exactly (in a column named "..._exact") will have their age set to the mid-point of the range; if set to "sample", the age will be sampled from the range; if set to "missing", age ranges will be treated as missing
if set to "remove" (default), participants without age information are removed; if set to "keep", participants with missing age are kept and treated as a separate age group
if set to "remove" (default), participants that have contacts without age information are removed; if set to "sample", contacts without age information are sampled from all the contacts of participants of the same age group; if set to "keep", contacts with missing age are kept and treated as a separate age group; if set to "ignore", contact with missing age are ignored in the contact analysis
column names(s) of the participant data of the survey()
object with user-specified weights (default = empty vector)
whether to weigh social contacts data by the day of the week (weight (5/7 / N_week / N) for weekdays and (2/7 / N_weekend / N) for weekends)
whether to weigh social contacts data by the age of the participants (vs. the populations' age distribution)
threshold value for the standardized weights before running an additional standardisation (default 'NA' = no cutoff)
what to do if sampling participants (with sample.participants = TRUE
) fails to sample participants from one or more age groups; if FALSE (default), corresponding rows will be set to NA, if TRUE the sample will be discarded and a new one taken instead
boolean to return the participant weights
boolean to explicitly return demography data that corresponds to the survey data (default 'NA' = if demography data is requested by other function parameters)
whether to return a matrix with contact rates per capita (default is FALSE and not possible if 'counts=TRUE' or 'split=TRUE')
further arguments to pass to get_survey()
, check()
and pop_age()
(especially column names)
Sebastian Funk
data(polymod)
contact_matrix(polymod, countries = "United Kingdom", age.limits = c(0, 1, 5, 15))
Run the code above in your browser using DataLab