Is there a possible possible work-around to incorporate contextual (socio-economic) variables into fractional factorial designs?
I know this is possible with efficient designs, but I need to run fractional factorial designs because I either need no correlations within or across attributes depending on the intent of the design (I believe this is the same as an efficient design with 0 as priors, but I need designs with no correlations. Whenever I run these designs there ends up being correlations.)
In this particular design case, attributes A-E are unlabeled and F-L are the contextual (socio-economic) variables that need to force to have identical levels within choice sets.
I ran the below syntax and received this error: Error: An attribute that mimics another attribute's levels (i.e. scenarios) was specified and is not compatible with orthogonal designs.
Code: Select all
Design
? This will generate a fractional factorial orthogonal design
;alts = alt1, alt2
;rows = 48
;orth = seq
;block=12
;model:
U(alt1) = b0 +b1*A[1,2,3]+b2*B[1,2,3]+b3*C[1,2,3,4]+b4*D[1,2]+b5*E[1,2,3,4]+b6*F[1,2,3] +b7*G[1,2,3,4] +b8*H[1,2,3,4] +b9*I[1,2,3,4] +b10*J[1,2,3] +b11*K[1,2,3,4] +b12*L[1,2,3,4]/
U(alt2) = b1*A +b2*B +b3*C +b4*D +b5*E +b6*F[F] +b7*G[G] +b8*H[H] +b9*I[I] +b10*J[J] +b11*K[K] +b12*L[L]
$Thanks for any help!