Hello,
I am encountering an error when I run the following syntax:
Design
;alts = alt1, alt2
;rows = 168
;block = 21
;eff = (mnl,d)
;model:
U(alt1) = b0[1]
+ b1[1] * A[0,1]
+ b2[-1] * B[0,1]
+ b3[1] * C[0,1,2,3]
+ b4[-1] * D[0,1,2]
+ b5[1] * E[0,1,2]
+ b6[1] * F[0,1]
+ b7[1] * G[40,80,120,160]
+ b8[1] * H[0,1,2,3,4]
+ b9[1] * I[20,40,60]
// Two-way interactions with prior values
+ b10[-1] * A[0,1] * B[0,1]
+ b11[1] * A[0,1] * C[0,1,2,3]
+ b12[-1] * A[0,1] * D[0,1,2]
+ b13[1] * A[0,1] * E[0,1,2]
+ b14[1] * A[0,1] * F[0,1]
+ b15[1] * A[0,1] * G[40,80,120,160]
+ b16[1] * A[0,1] * H[0,1,2,3,4]
+ b17[1] * A[0,1] * I[20,40,60]
+ b18[-1] * B[0,1] * C[0,1,2,3]
+ b19[1] * B[0,1] * D[0,1,2]
+ b20[-1] * B[0,1] * E[0,1,2]
+ b21[-1] * B[0,1] * F[0,1]
+ b22[-1] * B[0,1] * G[40,80,120,160]
+ b23[-1] * B[0,1] * H[0,1,2,3,4]
+ b24[-1] * B[0,1] * I[20,40,60]
+ b25[-1] * C[0,1,2,3] * D[0,1,2]
+ b26[1] * C[0,1,2,3] * E[0,1,2]
+ b27[1] * C[0,1,2,3] * F[0,1]
+ b28[1] * C[0,1,2,3] * G[40,80,120,160]
+ b29[1] * C[0,1,2,3] * H[0,1,2,3,4]
+ b30[1] * C[0,1,2,3] * I[20,40,60]
+ b31[-1] * D[0,1,2] * E[0,1,2]
+ b32[-1] * D[0,1,2] * F[0,1]
+ b33[-1] * D[0,1,2] * G[40,80,120,160]
+ b34[-1] * D[0,1,2] * H[0,1,2,3,4]
+ b35[-1] * D[0,1,2] * I[20,40,60]
+ b36[1] * E[0,1,2] * F[0,1]
+ b37[1] * E[0,1,2] * G[40,80,120,160]
+ b38[1] * E[0,1,2] * H[0,1,2,3,4]
+ b39[1] * E[0,1,2] * I[20,40,60]
+ b40[1] * F[0,1] * G[40,80,120,160]
+ b41[1] * F[0,1] * H[0,1,2,3,4]
+ b42[1] * F[0,1] * I[20,40,60]
+ b43[1] * G[40,80,120,160] * H[0,1,2,3,4]
+ b44[1] * G[40,80,120,160] * I[20,40,60]
+ b45[1] * H[0,1,2,3,4] * I[20,40,60]
/
U(alt2) = b1 * A
+ b2 * B
+ b3 * C
+ b4 * D
+ b5 * E
+ b6 * F
+ b7 * G
+ b8 * H
+ b9 * I
// Two-way interactions with prior values
+ b10 * A * B
+ b11 * A * C
+ b12 * A * D
+ b13 * A * E
+ b14 * A * F
+ b15 * A * G
+ b16 * A * H
+ b17 * A * I
+ b18 * B * C
+ b19 * B * D
+ b20 * B * E
+ b21 * B * F
+ b22 * B * G
+ b23 * B * H
+ b24 * B * I
+ b25 * C * D
+ b26 * C * E
+ b27 * C * F
+ b28 * C * G
+ b29 * C * H
+ b30 * C * I
+ b31 * D * E
+ b32 * D * F
+ b33 * D * G
+ b34 * D * H
+ b35 * D * I
+ b36 * E * F
+ b37 * E * G
+ b38 * E * H
+ b39 * E * I
+ b40 * F * G
+ b41 * F * H
+ b42 * F * I
+ b43 * G * H
+ b44 * G * I
+ b45 * H * I
$
The error I encounter is: Warning: No valid design has been found after 10 minutes. If no designs have been evaluated (see the counter below), this may be because a single design is taking a very long time to evaluate. If invalid designs are reported below, there may be a problem with the specification of the design. A common problem is that the choice probabilities are too extreme (close to 1 and 0), perhaps because some or all of the prior values are too large. Also, it is generally a good idea to start with a simple design (MNL, non-Bayesian), then add complexity. If you press stop, a design will be reported, which may assist in diagnosing the problem.
Could the problem be related to the following facts:
1- I do not assign each level of an attribute a different prior parameter; rather, I assign, e.g., attribute A with coefficient 1. There are examples in the manual in which prior parameters are represented with normal distribution. I am not sure if I need to follow a similar logic.
2- All of my attributes are not categorical but I think I treat them as categorical as I am not sure how to differentiate between them while writing the syntax.
Your help would be greatly appreciated.
Thank you very much!
Beyza