data_known_exposures_ex1.Rd
This data format represents the serological data used by the rjmcmc model
A list with the following columns:
Unique identifier for each biomarker.
Time at which the known exposure occurred
Key for the type of exposure experienced
Add more data about this model here.
Add related functions
# Example usage. For example if you have some information on known vaccinatoins, you can define:
data_known_exposures_ex1 <- data.frame(
id = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
time = c(10, 4, 100, 40, 20, 23, 26, 70, 40, 10),
exposure_type = rep("vax", 10)
)