I am trying to adopt the D-optimal design for 8 attributes with 3 choices.
I get an "out of memory" error when I run the following code:
Design
;alts = alt1, alt2
;rows = 27
;orth = ood
;model:
U(alt1) = b1 + b2 * A[1, 2, 3] + b3 * B[1, 2, 3] + b4 * C[1, 2, 3] + b5 * D[1, 2, 3]
+ b6 * E[1, 2, 3] + b7 * F[1, 2, 3] + b8 * G[1, 2, 3] + b9 * H[1, 2, 3] /
U(alt2) = b2 * A + b3 * B + b4 * C + b5 * D
+ b6 * E + b7 * F + b8 * G + b9 * H
$
Changing the number of attributes to 7 or 10 will not cause the above error.
How do I avoid errors with the eight attributes?
Thank you.