biokinetics_priors.Rd
The biokinetics model has 6 parameters: t0, tp, ts, m1, m2, m3 corresponding to critical time points and
gradients. See the model vignette for details: vignette("model", package = "epikinetics")
. Each of these
parameters has a Gaussian prior, and these can be specified by the user. This function takes means and standard
deviations for each prior and constructs an object of type 'biokinetics_priors' to be passed to the model.
biokinetics_priors(
mu_t0 = 4,
mu_tp = 10,
mu_ts = 60,
mu_m1 = 0.25,
mu_m2 = -0.02,
mu_m3 = 0,
sigma_t0 = 2,
sigma_tp = 2,
sigma_ts = 3,
sigma_m1 = 0.01,
sigma_m2 = 0.01,
sigma_m3 = 0.01
)
Numeric. Mean for t0, baseline titre value. Default 4.0.
Numeric. Mean for tp, time at peak titre. Default 10.
Numeric. Mean for ts, time at start of warning. Default 60.
Numeric. Mean for m1, boosting rate. Default 0.25.
Numeric. Mean for m2, plateau rate. Default 0.25.
Numeric. Mean for m3, waning rate. Default -0.02.
Numeric. Standard deviation for t0, baseline titre value. Default 2.0.
Numeric. Standard deviation for tp, time at peak titre. Default 2.0.
Numeric. Standard deviation for ts, time at start of warning. Default 3.0.
Numeric. Standard deviation for m1, boosting rate. Default 0.01.
Numeric. Standard deviation for m2, plateau rate. Default 0.01.
Numeric. Standard deviation for m3, waning rate. Default 0.01.
A named list of type 'biokinetics_priors'.
priors <- biokinetics_priors(mu_t0 = 5.0, mu_ts = 61)