Eliminate dominated strategies (unlabelled experiment)
Posted: Thu Aug 29, 2013 12:04 pm
I am new to choice experiments (and even more so) to design of those experiments.
I am trying to design a first trial run to get better priors for a larger experiment; People would need to choose between 3 alternatives (2 unlabelled, and 1 SQ ; The attributes are YIELD (3 levels), DROUGHT (3 levels); ENV (effect coded; 3 levels); and CULT (effect coded; 2 levels). I had to add some constraints for combinations not making sense and arrive at the code attached.
However I have questions regarding the use of * to eliminated dominated strategies:
Given the fact that alt3 is the status quo, can I also attach a * ; my understanding is that SQ is "labeled" and therefore we cannot use the *; but when I not include the * then I get several combinations where the SQ is the obvious winner such as that one:
alt1 alt2 alt3
pay 800 800 0
yield 400 400 400
drought 100 100 100
env 0 1 2
cult 1 0 1
Thank you in advance to experienced users for their insights.
Design
?Bayesian efficient design
;alts = alt1*, alt2*, alt3
;rows=24
;block=4
;eff = (mnl,wtp(ref1),mean)
;wtp = ref1(y,d,e,c/pay)
;cond:
if(alt1.DROUGHT=100, alt1.YIELD=400),
if(alt2.DROUGHT=100, alt2.YIELD=400),
if(alt1.DROUGHT=50, alt1.YIELD=[600,1200]),
if(alt2.DROUGHT=50, alt2.YIELD=[600,1200]),
if(alt1.DROUGHT=33, alt1.YIELD=[600,1200]),
if(alt2.DROUGHT=33, alt2.YIELD=[600,1200])
;
model:
U(alt1) = pay[-.001] * PAY[800,1600,3200]
+ y[(u,0.003, 0.006)] * YIELD[400, 600, 1200]
+ d[(u,-.1, -0.07)] * DROUGHT[100, 50, 33]
+ e.effect[(u,0.15,0.2)|(u,0.25,0.3)] * ENV[1,2,0]
+ c.effect[(u,0.15,0.25)] * CULT[1,0] /
U(alt2) = pay * PAY + y * YIELD + d * DROUGHT + e.effect * ENV + c.effect* CULT /
U(alt3) = ASC[.5] + y * YIELDsq[400]+ d * DROUGHTsq[100] + e.effect* ENVsq[1,2,0](0,24,0) + c.effect* CULTsq[1,0](24,0)
$
I am trying to design a first trial run to get better priors for a larger experiment; People would need to choose between 3 alternatives (2 unlabelled, and 1 SQ ; The attributes are YIELD (3 levels), DROUGHT (3 levels); ENV (effect coded; 3 levels); and CULT (effect coded; 2 levels). I had to add some constraints for combinations not making sense and arrive at the code attached.
However I have questions regarding the use of * to eliminated dominated strategies:
Given the fact that alt3 is the status quo, can I also attach a * ; my understanding is that SQ is "labeled" and therefore we cannot use the *; but when I not include the * then I get several combinations where the SQ is the obvious winner such as that one:
alt1 alt2 alt3
pay 800 800 0
yield 400 400 400
drought 100 100 100
env 0 1 2
cult 1 0 1
Thank you in advance to experienced users for their insights.
Design
?Bayesian efficient design
;alts = alt1*, alt2*, alt3
;rows=24
;block=4
;eff = (mnl,wtp(ref1),mean)
;wtp = ref1(y,d,e,c/pay)
;cond:
if(alt1.DROUGHT=100, alt1.YIELD=400),
if(alt2.DROUGHT=100, alt2.YIELD=400),
if(alt1.DROUGHT=50, alt1.YIELD=[600,1200]),
if(alt2.DROUGHT=50, alt2.YIELD=[600,1200]),
if(alt1.DROUGHT=33, alt1.YIELD=[600,1200]),
if(alt2.DROUGHT=33, alt2.YIELD=[600,1200])
;
model:
U(alt1) = pay[-.001] * PAY[800,1600,3200]
+ y[(u,0.003, 0.006)] * YIELD[400, 600, 1200]
+ d[(u,-.1, -0.07)] * DROUGHT[100, 50, 33]
+ e.effect[(u,0.15,0.2)|(u,0.25,0.3)] * ENV[1,2,0]
+ c.effect[(u,0.15,0.25)] * CULT[1,0] /
U(alt2) = pay * PAY + y * YIELD + d * DROUGHT + e.effect * ENV + c.effect* CULT /
U(alt3) = ASC[.5] + y * YIELDsq[400]+ d * DROUGHTsq[100] + e.effect* ENVsq[1,2,0](0,24,0) + c.effect* CULTsq[1,0](24,0)
$