Hope everything goes well for you!
I am generating a Bayesian design (the code is below). The D error of the Bayesian mean is 9.99. Is it too high? I know the lower D error is better. What is your thumb rule of D error for Bayesian design? Is there any way to decrease the D error?
Also if I add the interaction term, will it cause an issue?
Thanks for your help.
Wei
- Code: Select all
Design;
;alts = alt1*, alt2*, nobuy
;rows = 16
;block = 2
;eff = (mnl, d, mean)
;bdraws = gauss(3)
;model:
U(alt1) = b0[(n,-2.739, 0.329)] + b1[(n,-0.123, 0.018)] * price[7.99, 11.99, 15.99, 19.99]
+ b2.dummy[(n, 0.359, 0.199) | (n,-0.332,0.223) |(n, -1.142, 0.223)] * mp [1,2,3,0]
+ b3.dummy[(n,-0.647, 0.132)] * production[1,0]
+ b4.dummy[(n,0.09,0.131)] * sustainability [1,0]
?+ b5 * mp.dummy[1] * production.dummy[1]
?+ b6 * mp.dummy[2] * production.dummy[1]
?+ b7 * mp.dummy[3] * production.dummy[1]
?+ b8 * mp.dummy[1] * sustainability.dummy[1]
?+ b9 * mp.dummy[2] * sustainability.dummy[1]
?+ b10 * mp.dummy[3] * sustainability.dummy[1]
/
U(alt2) = b0 + b1 * price
+ b2 * mp
+ b3 * production
+ b4 * sustainability
?+ b5 * mp.dummy[1] * production.dummy[1]
?+ b6 * mp.dummy[2] * production.dummy[1]
?+ b7 * mp.dummy[3] * production.dummy[1]
?+ b8 * mp.dummy[1] * sustainability.dummy[1]
?+ b9 * mp.dummy[2] * sustainability.dummy[1]
?+ b10 * mp.dummy[3] * sustainability.dummy[1]
$