create_age_mask | R Documentation |
Converts a data frame of individual ages to give the index of the first infection that individual could have had
create_age_mask(DOBs, possible_exposure_times)
DOBs |
the vector of dates of birth, same time units as possible_exposure_times |
possible_exposure_times |
the vector of times that individuals can be infected |
a vector giving the first index of possible_exposure_times that an individual can be infected
data(example_antibody_data)
data(example_antigenic_map)
times <- example_antigenic_map$inf_times
DOBs <- unique(example_antibody_data[,c("individual","birth")])
age_mask <- create_age_mask(DOBs$birth, times)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.