Could the reason be that there are impossible combinations between E and F within the reject conditions?
If that's the case, would it be necessary to revise the experimental design?
If this can be resolved by modifying the program, I would like to know how.
Thank you in advance.
Code: Select all
Design
;alts = alt1*, alt2*
;rows = 18
;eff = (mnl, d)
;alg = mfederov(stop = total(1000000 iterations))
;reject:
?alt1
alt1.E = 0 and alt1.F =< 2,
alt1.E =< 1 and alt1.F <= 0,
?alt2
alt2.E = 0 and alt2.F =< 2,
alt2.E =< 1 and alt2.F <= 0
;model:
U(alt1) = b1.dummy[0|0] * A[1,2,0]
+ b2.dummy[0|0] * B[1,2,0]
+ b3.dummy[0|0] * C[1,2,0]
+ b4.dummy[0|0] * D[1,2,0]
+ b5.dummy[0|0|0] * E[1,2,3,0]
+ b6.dummy[0|0|0|0] * F[1,2,3,4,0]
+ b7.dummy[0|0] * G[1,2,0]
/
U(alt2) = b1 * A
+ b2 * B
+ b3 * C
+ b4 * D
+ b5 * E
+ b6 * F
+ b7 * G
$