Hi there,
I'm involved in a study that analyzes preferences of residents for future growth in rural landscapes. We are measuring this with a stated choice experiment in a mail-back survey. The design has 18 choice sets, 2 unique blocks, 3 alternatives (1 & 2 are unlabeled/generic & the 3rd is an opt-out), and six attributes (all with three levels except one with 5). The survey has been piloted and the priors have been generated in Nlogit software. We plan to execute a full random parameters model. I have two main questions:
1. The syntax for generating our final design is shown below. Are we on the right track here? Particularly, I'm uncertain on how to write the syntax for incorporating the opt-out alternative ("alt3").
2. How do we move from generating a multinomial model to a full random parameters model? I've read from previous posts that this should be an incremental process but am still uncertain how this works using the software.
Thank you in advance for your assistance!
Lorraine
?Attributes
?Res "b1" (0, 1, 2, 3, 4)(Residential growth in the county: -2%, 0%, 2%, 4%, 6%)
?Grs "b2" (0, 1, 2) (Protected grasslands: stay the same, increase by 3%, increase by 5%)
?Rec "b3" (0, 1, 2) (Access to recreational areas: up to 20 mi, 7 mi, 1 mi)
?Ag "b4"(0, 1, 2) (% land set aside for ag production in the county: 30%, 50%, 70%)
?Bis "b5" (0, 1, 2) (total number of bison: stay the same, 5%, 10%)
?Emp "b6"(0, 1, 2) (Uneployment rate: 2%, 4%, 8%)
? MNL model
Design
;alts = alt1*, alt2*, alt3
;rows = 18
;block = 2
;eff = (mnl, d)
;model:
U(alt1) = b1[-.01796] * A[0,1,2,3,4] + b2[.08114] * B[0,1,2] + b3[.10731] * C[0,1,2] + b4[.55066] * D[0,1,2] + b5[.15947] * E[0,1,2] + b6[-.57010] * F[0,1,2] /
U(alt2) = b1 * A + b2 * B + b3 * C + b4 * D + b5 * E + b6 * F /
U(alt3) = b0[-.48097] $
? Panel random parameters model
Design
;alts = alt1*, alt2*, alt3
;rows = 18
;block = 2
;eff = (rppanel, d)
;rep = 500;
rdraws = random (1000)
;model:
U(alt1) = b1[n,-.03406,.06828] * A[0,1,2,3,4] + b2[n,.11381,.11100] * B[0,1,2] + b3[n,.15575,.10344] * C[0,1,2] + b4[n,.85768,.22534] * D[0,1,2] + b5[n,.19017,.11558] * E[0,1,2] + b6[n,-.83370,.22157] * F[0,1,2] /
U(alt2) = b1 * A + b2 * B + b3 * C + b4 * D + b5 * E + b6 * F /
U(alt3) = b0[-.47807] $