adjustment_formula | R Documentation |
Specify the cycle threshold adjustment model formula
adjustment_formula(formula = ~1, obs, beta_default = c(0, 0.1))
formula |
A model formula defaulting to |
obs |
A data.frame with the following variables:
|
beta_default |
A vector of length two containing the default mean and standard deviation to use as the prior for all covariate effect sizes. |
A named list including the design matrix ("design")
and a data.table
of priors for covariate effects ("beta").
Sam Abbott
Functions used to design and setup models
epict_formula_as_list()
,
epict_individual_priors_as_list()
,
epict_inference_opts()
,
epict_model_opts()
,
epict_obs_as_list()
,
epict_onset_obs_as_list()
,
epict_population_priors_as_list()
,
epict_posterior_as_prior()
,
piecewise_formula()
,
select_piecewise_parameters()
obs <- data.frame(
age = c(1, 2, 3), cats = c(1, 2, 1), status = c("h", "l", "h")
)
adjustment_formula(~ cats + age + status, obs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.