I am designing a DCE for WTA and would like to ask for feedback concerning the constraint. There are no past studies on the topic so using benign priors. When imposing a nesting constraint: "If D=0, then E=0", the frequency of D level 0 is concerningly low, appearing in only 4 of the 48 profiles. While I understand that more efficient designs may come at the expense of level balance, is this frequency too low? It seems that efficiency is lost by having so few comparisons of levels 1,2,and 3 of D relative to level 0. I also understand (and tried) that nesting overrules attribute level frequency/range imposed in the design.
Code: Select all
Design
;alts=alt1, alt2
;rows=24
;eff=(mnl,d)
;rep=500
;block=3
;cond:
if(alt1.D=0, alt1.E=0),
if(alt2.D=0, alt2.E=0)
;model:
U(alt1) = b1[0.01]*Price[190, 195, 200, 205] +
b2.dummy[-.001] *A[1,0] +
b3.dummy[.002|.001] *B[2,1,0] +
b4.dummy[.001] *C[2,1] +
b5.dummy[.002|.002|.001] *D[3,2,1,0] +
b6.dummy[.003|.002|.002|.001] *E[4,3,2,1,0] +
i1[.001]*D*E
/
U(alt2) = b1*Price +
b2*A +
b3*B +
b4*C +
b5*D +
b6*E
$