50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

beaver (version 1.0.0)

model_negbin_emax: Negative Binomial EMAX Dose Response

Description

Model settings for a negative binomial distribution assuming an EMAX Model on the mean. This function is to be used within a call to beaver_mcmc().

Usage

model_negbin_emax(
  mu_b1,
  sigma_b1,
  mu_b2,
  sigma_b2,
  mu_b3,
  sigma_b3,
  w_prior = 1
)

Value

A list with the model's prior weight and hyperparameter values.

Arguments

mu_b1, sigma_b1, mu_b2, sigma_b2, mu_b3, sigma_b3

hyperparameters. See the model description below for context.

w_prior

the prior weight for the model.

Negative Binomial EMAX

Let yij be the jth subject on dose di. The model is yij NB(pi,ri) pi Uniform(0,1) rij=(μijpi)/(1pi) log(μij)=xijb1+b2di/(b3+di) b1 N(mub1,sigmab12) b2 N(mub2,sigmab22) b3 N(mub3,sigmab32)(Truncatedtobepositive) The model is parameterized in terms of the mean of the negative binomial distribution and the usual probability parameter p. The prior on the mean is an EMAX model, and the prior on p at each dose is Uniform(0, 1). The model can adjust for baseline covariates, (xij).

See Also

Other models: beaver_mcmc(), model_negbin_exp(), model_negbin_indep(), model_negbin_linear(), model_negbin_loglinear(), model_negbin_logquad(), model_negbin_quad(), model_negbin_sigmoid_emax()