data_titre_ex.Rd
This data format represents the serological data used by the rjmcmc model
A list with the following columns:
Unique identifier for each biomarker.
Description of the model using the makeModel
and addObservationalModel
functions.
Description of the prior distribution using the addPrior
function.
Description of the prior distribution using the addPrior
function.
Add more data about this model here.
Add related functions
# 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)
)