This data format represents the serological data used by the rjmcmc model

Format

A list with the following columns:

id

Unique identifier for each biomarker.

time

Time at which the known exposure occurred

exposure_type

Key for the type of exposure experienced

Details

Add more data about this model here.

See also

Add related functions

Author

David Hodgson

Examples

# 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)
)