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

Description of the model using the makeModel and addObservationalModel functions.

titre

Description of the prior distribution using the add_par_df function.

biomarker

Description of the prior distribution using the add_par_df function.

Details

Add more data about this model here.

See also

Add related functions

Author

David Hodgson

Examples

# Example usage. For example we can make some summy data for IgG SARS-CoV-2

data_titre <- data.frame(
     id = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
    time = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
   titre = c(1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4),
     biomarker = rep("IgG", 10)
)