we are trying to generate a design with a specific number of two-way interactions.
The design has
- 8 attributes using effects coding (1 attr with 2 levels, 7 attr with 3 levels)
- 3 alternatives
- 72 rows blocked in 6 versions (that is 12 tasks per respondent).
Attribute 1 is supposed to be categorial (label 1, label 2).
The design should allow us to estimate interactions between the two level of attribute 1 and all levels of the remaining 7 attributes.
So far the design is specified as:
- Code: Select all
Design
;alts = alt1, alt2, alt3
;rows = 72
;block = 6
;eff = (mnl,d,mean)
;model:
U(alt1) =
b1.effects * attr1 [0,1] +
b2.effects[(n,0.8,0.1)|(n,0.01,0.02)] * attr2 [1,6,12] +
b3.effects[(n,0.1,0.1)|(n,0.01,0.02)] * attr3[0,1,2] +
b4.effects[(n,0.6,0.1)|(n,0.01,0.02)] * attr4[0,1,2] +
b5.effects[(n,0.2,0.1)|(n,0.01,0.02)] * attr5 [0,1,2] +
b6.effects[(n,0.6,0.1)|(n,0.01,0.02)] * attr6 [0,1,2] +
b7.effects[(n,0.4,0.1)|(n,0.01,0.02)] * attr7[0,3,9] +
b8.effects[(n,0.5,0.1)|(n,0.01,0.02)] * attr8[2,4,6] +
i1 * attr1.effects[0] * attr2+
i2 * attr1.effects[0] * attr3 +
i3 * attr1.effects[0] * attr4 +
i4 * attr1.effects[0] * attr5 +
i5 * attr1.effects[0] * attr6 +
i6 * attr1.effects[0] * attr7 +
i7 * attr1.effects[0] * attr8 /
U(alt2) =
b1.effects * attr1 +
b2.effects * attr2 +
b3.effects * attr3 +
b4.effects * attr4 +
b5.effects * attr5 +
b6.effects * attr6 +
b7.effects * attr7 +
b8.effects * attr8 +
i1 * attr1.effects[0] * attr2+
i2 * attr1.effects[0] * attr3 +
i3 * attr1.effects[0] * attr4 +
i4 * attr1.effects[0] * attr5 +
i5 * attr1.effects[0] * attr6 +
i6 * attr1.effects[0] * attr7 +
i7 * attr1.effects[0] * attr8 /
U(alt3) =
b1.effects * attr1 +
b2.effects * attr2 +
b3.effects * attr3 +
b4.effects * attr4 +
b5.effects * attr5 +
b6.effects * attr6 +
b7.effects * attr7 +
b8.effects * attr8 +
i1 * attr1.effects[0] * attr2+
i2 * attr1.effects[0] * attr3 +
i3 * attr1.effects[0] * attr4 +
i4 * attr1.effects[0] * attr5 +
i5 * attr1.effects[0] * attr6 +
i6 * attr1.effects[0] * attr7 +
i7 * attr1.effects[0] * attr8 $
We explicitly specified interactions between level 1 of attr1 and each remaining attributes.
Are the interaction terms specified correctly in the design? Will the given design allow us to estimate each interaction effect between level 2 of attr1 and the other attributes? Or would we have to specify each level of attribute 1 with each single level of the other attributes
Prior to this, we already specified additional 7 interactions (i8 to i14) using level 2 of attr1 and remaning attributes but this already seemed to be too complex and NGENE did not come up with a design.
Many thanks.
Best,
Andrew