I am designing a choice experiment with three alternatives: two wetland restoration alternatives and one status quo (SQ). The two restoration alternatives both improve on the SQ, in which wetland areas will decline without restoration, and all attribute levels will decline in the future. The levels that appear in the SQ are fixed and do not appear in two other alternatives.
My questions are:
1. Is it okay that attribute levels for SQ only appear in SQ and not in other alternatives?
2. If so, how can I code so that attribute levels for SQ (0 in the code below) do not appear in alt1 and alt2?
3. Any other suggestions for improvement.
Below is my attempt. Any insights will be greatly appreciated.
Design
;alts = alt1*, alt2*, sq*
;rows = 16
;block = 4
;eff = (mnl,d)
;alg = mfederov
? FISH: recreational fish harvest FISH=0 reduction, FISH=1 maintain current level, FISH=1 15% increase, FISH = 2 30% increase
? WILD: % of restored land suitable as wildlife habitat WILD=0 no additional habitat, WILD=1 25% suitable, WILD=2 50% suitable, WILD=3 75% suitable
? ACCESS: % of restored land accessible ACCESS=0 no additional access and access declines, ACCESS=1 restricted, ACCESS=2 25%, ACCESS=3 50%
? WALK :miles of boardwalk WALK=0 no additional boardwalk and miles reduced, WALK=1 restricted, WALK=2 1 mile, WALK=3 2 miles
? COST: annual tax increase $10,25,50,75,100,150,200,300
;require:
sq.FISH_sq=0,
sq.WILD_sq=0,
sq.ACCESS_sq=0,
sq.WALK_sq=0
;reject:
alt1.FISH=0 and alt1.WILD=0,
alt1.FISH=0 and alt1.ACCESS=0,
alt1.FISH=0 and alt1.WALK=0,
alt1.WILD=0 and alt1.ACCESS=0,
alt1.WILD=0 and alt1.WALK=0,
alt1.ACCESS=0 and alt1.WALK=0,
alt2.FISH=0 and alt2.WILD=0,
alt2.FISH=0 and alt2.ACCESS=0,
alt2.FISH=0 and alt2.WALK=0,
alt2.WILD=0 and alt2.ACCESS=0,
alt2.WILD=0 and alt2.WALK=0,
alt2.ACCESS=0 and alt2.WALK=0
;model:
U(alt1) = b1.dummy[0.001|0.002|0.003] * FISH[1,2,3,0]
+ b2.dummy[0.002|0.003|0.004] * WILD[1,2,3,0]
+ b3.dummy[0|0.001|0.002] * ACCESS[1,2,3,0]
+ b4.dummy[0|0.001|0.002] * WALK[1,2,3,0]
+ b5[-0.02] * COST[10,25,50,75,100,150,200,300]
/
U(alt2) = b1.dummy*FISH
+ b2.dummy*WILD
+ b3.dummy*ACCESS
+ b4.dummy*WALK
+ b5*COST
/
U(sq) = sq_asc
+ b1.dummy*FISH_sq[1,2,3,0]
+ b2.dummy*WILD_sq[1,2,3,0]
+ b3.dummy*ACCESS_sq[1,2,3,0]
+ b4.dummy*WALK_sq[1,2,3,0]
+ b5*COST_sq[0]
$