Hello, we are trying to design a choice experiment that in its simplest form has the following syntax
? Model for a hypothetical choice experiment
? Optimal orthogonal in the difference choice designs
? 9 rows, 3 profiles + no-buy option in each row
? model for utility function based on product attributes only
? The price attribute utility is treated as linear
Design
;alts = alt1, alt2, alt3, none
;rows = 9
;orth = ood
;model:
U(alt1) = b1[-.2]*PRICE[1.1,1.9,2.7] + b2.dummy[.5|.4]*CERT[1,2,3] + b3.dummy[.5|.4]*BRAND[1,2,3]/
U(alt2) = b1 *PRICE + b2.dummy *CERT + b3.dummy *BRAND /
U(alt3) = b1 *PRICE + b2.dummy *CERT + b3.dummy *BRAND /
U(none) = b0[-1]
$
This code works perfectly (there is only one design with 9 rows, that is orthogonal).
We would like to consider a "status quo" (squo) option instead of a "none" option, since we assume that the consumer could choose to buy the usual pack of pasta instead of the ones we are proposing.
We then consulted the chapter "8.3 Reference or pivot (customized) designs" in the Ngene manual, but we noted that there is no instruction regarding designs with dummy variables and if we try to use them we obtain an error message.
We are aware that we could overcome the problem using the exploded code for the dummies, our problem is that we have a status quo that could change and that we should constrain the combinations and interactions.
We would like to consider the price of the squo option as a random variable (it is the price they remind they paid for the pasta they usually buy), the level for the attribute CERT should be a fourth dummy level (0), and the level for the attribute BRAND should be a fourth dummy level (0).
Any suggestion?