I am considering investigating three health states (state A, state B, and “immediate death”).
"Immediate death" has neither attributes nor levels.
How should I consider "immediate death" in the result of the following program?
Code: Select all
Design
;alts = alt1*, alt2*
;rows = 75
;eff = (mnl, d)
;alg = mfederov(stop = total(1000000 iterations))
;block = 5
;model:
U(alt1) = b1 * A[0, 1, 2, 3]
+ b2 * B[0, 1, 2, 3]
+ b3 * C[0, 1, 2, 3]
+ b4 * D[0, 1, 2, 3]
+ b5 * E[0, 1, 2, 3]
+ b6 * F[0, 1, 2, 3]
+ b7 * G[0, 1, 2, 3]
+ b8 * H[1, 2, 5, 10]
/
U(alt2) = b1 * A
+ b2 * B
+ b3 * C
+ b4 * D
+ b5 * E
+ b6 * F
+ b7 * G
+ b8 * H
$