Planning a Preference Survey
Posted: Wed Apr 10, 2024 10:58 am
I am planning a preference survey using a Federov algorithm.
I create the following program, where A-C are all categorical variables.
Regards.
I create the following program, where A-C are all categorical variables.
- Code: Select all
Design
;alts = alt1*, alt2*
;rows = 20
;eff = (mnl, d) + 2 * (imbalance)
;alg = mfederov(stop=total(1000000 iterations))
;block = 2
;model:
U(alt1) = b1[0.1].dummy[0|0|0] * A[1,2,3,4]
+ b2[0.1].dummy[0|0|0|0] * B[1,2,3,4,5]
+ b3[0.1].dummy[0] * C[1,2]
/
U(alt2) = b1 * A
+ b2 * B
+ b3 * C
$
- How do I set the number before imbalance?
How do I set a prior value? (Source: coefficient? utility?)
Regards.