first of all thanks for providing this forum for help, I already learned a lot scrolling through other threads! But now, before I start my experiment, I am unsure about which final design to choose and would be very thankful for some guidance.
I want to design a choice experiment where I assess the willingness to participate of people. I’ve got 6 attributes, two with two levels (dummys) and four with three levels. I want to check for two interaction effects and I aim to calculate the willingness to get for participation at the end.
However, I am unsure on which design I should use. In the literature, there have been other studies conducting choice experiments on my topic, some using orthogonal designs, some using d-efficient designs with pilot studies.
I won’t be able to do a pilot study and the results from the other studies are very different to each other (ranging from 0.05 to 0.14 for example). Additionally, in all these studies, it has been assumed that the contract for participation would be binding. But I’d like to add a dummy that makes the contract flexible, which will likely affect the influence of certain attributes, so the results from other studies would be quite misleading. I’m now considering whether I should work with bayesian efficient designs, with efficient designs and only giving the parameter signs, or if I should just use orthogonal designs as well?
So I’ve got three design ideas. Could you help me in deciding which one would be better for my case, or how I should change them?
First, orthogonal (here I’d need to delete one attribute so that I dont get too many choise sets. This is a bit problematic but doable. But it is my least preferred way):
- Code: Select all
Design
;alts=alt1, alt2, alt3
;rows=12
;orth=seq
;eff = (mnl,d)
;wtp = wtp1(b2,b3/b5)
;model:
U (alt1)= b2*A[0,1,2] +b3*B[0,1,2]
+b4.dummy*FLEX[0,1] +b5*E [0,1,2] + b6*F[0,1,2]
+b7*FLEX*A + b8*FLEX*B /
U (alt2)= b2*A+b3*B+b4.dummy*FLEX+b5*E+ b6*F+b7*FLEX*A + b8*FLEX*B
$
Second, D-efficient only considering signs:
- Code: Select all
? final survey design
design
;alts = alt1, alt2, alt3
;rows = 12
;eff = (mnl,d);
wtp = wtp1(b2,b3/b6);
model:
U(alt1) = b2[-0.001]*A[0,1,2] + b3[0.001]*B[0,1,2]
+b4.dummy[0.001]*FLEX[0,1] +b5.dummy[0.001]*ZYKLUS[0,1]
+ b6[0.001]*E[0,1,2]+ b7[0.001]*F[0,1,2]
+b8[0.001]*FLEX*A + b9[-0.001]*FLEX*B /
U(alt2) = b2*A + b3*B
+b4.dummy*FLEX +b5.dummy*ZYKLUS
+ b6*E+b7*F
+b8*FLEX*A + b9*FLEX*B
$
Third, bayesian:
- Code: Select all
? final survey design
design
;alts = alt1, alt2, alt3
;rows = 12
;eff = (mnl,d,mean)
;wtp = wtp1(b2,b3/b6)
;model:
U(alt1) = b2[(u,-0.1,-0.01)]*A[0,1,2] + b3[(u,0.1,0.9)]*B[0,1,2]
+b4.dummy[(u,0,0.5)]*FLEX[0,1] +b5.dummy[(u,0,0.1)]*ZYKLUS[0,1]
+ b6[(u,0.01,0.8)]*E[0,1,2]+ b7[(u,0.01,0.8)]*F[0,1,2]
+b8[(u,0,0.1)]*FLEX*A + b9[(u,0,0.1)]*FLEX*B /
U(alt2) = b2*A + b3*B
+b4.dummy*FLEX +b5.dummy*ZYKLUS
+ b6*E+b7*F
+b8*FLEX*A + b9*FLEX*B
$
Any comment is appreciated. Thank you!
Kind regards
AnyM