-
Notifications
You must be signed in to change notification settings - Fork 6
Description
First of all, thank you very much for this great package! It is really nice to have an easy to use R package to generate designs for choice experiments.
I would like to use the CEA procedure to generate a bayesian d-efficient design. I have enough knowledge to make assumptions about the directions of the effects of the attributes, but not about the exact strength. If I read your documentations correctly i can only define a point estimate for the priors. But in the article of Traets et al. (2020) describing the idefix package, they suggest to describe semi-informative priors with a truncated normal distribution. If i understand the bayesian approach correctly the idea is in general to define a distribution of likely parameters for the prior. How can I approach this in the cbcTools package? Instinctively I defined a very small effect with the right direction at the moment (see code below). Is there another way to define a prior distribution for an attribute where only the direction of the effect is known?
Many thanks in advance!
Code:
priors1 = list(
ProteinSource =c(-0.1),
NutritionalClaim = c(0.1),
QualityClaim = c(0.1, 0.1, 0.1),
Price = -0.1)
bayesian_design1 <- cbc_design(
profiles = profiles1,
n_resp = 500, # Number of respondents
n_alts = 2, # Number of alternatives per question
n_q = 12, # Number of questions per respondent
n_start = 5,
no_choice = FALSE,
priors = priors1,
method = "CEA",
parallel = FALSE
)