I have 2 unlabelled alternatives and a status quo option. The status quo option is wetcon[0], infedu[12], toupre[2.5] and a price attribute hhtax[0]. Attribute A is a dummy with 3 levels (1,2,0) where 0 is the base. I am new to Ngene.
In light of the above quote, what measures can I take to ensure that issues with dummy codes in the status quo option (in the syntax) are minimised?If you want to fix the levels of the other attributes, you can do that also, but please be careful. If you read the most recent posts, you will see doing this can cause issues with dummy codes.
Code: Select all
Design
;alts = alt1, alt2, sq
;rows = 12
;eff = (mnl,d,mean)
;bdraws = gauss(1)
;model:
U(alt1) = b2.dummy[(n,0.169831,0.086648)|(n,0.339661,0.086648)] * wetcon[1,2,0] +
b3[(n,0.05661,0.014441)] * infedu[8,12,16] +
b4[(n,0.069674,0.017774)] * toupre[1,2.5,5,7.5] +
b5[(n,-0.011322,0.00525)] * hhtax[0,10,20,40,80,120]/
U(alt2) = b2 * wetcon +
b3 * infedu +
b4 * toupre +
b5 * hhtax /
U(sq) = b2 * wetcon1[0] +
b3 * infedu1[12] +
b4 * toupre1[2.5] +
b5 * hhtax1[0] $
Code: Select all
Design
;alts = alt1*, alt2*, sq
;rows = 12
;eff = (mnl,d,mean)
;bdraws = gauss(1)
;model:
U(alt1) = b2.dummy[(n,0.169831,0.086648)|(n,0.339661,0.086648)] * wetcon[1,2,0] +
b3[(n,0.05661,0.014441)] * infedu[8,12,16] +
b4[(n,0.069674,0.017774)] * toupre[1,2.5,5,7.5] +
b5[(n,-0.011322,0.00525)] * hhtax[0,10,20,40,80,120]/
U(alt2) = b2 * wetcon +
b3 * infedu +
b4 * toupre +
b5 * hhtax $
The last syntax I have does not include the 0 price in alt1 and alt2. If there is no solution to design 1 and 2, can I use design 3 below and specify SQ in the DCE survey?
Code: Select all
Design
;alts = alt1*, alt2*, sq
;rows = 12
;eff = (mnl,d,mean)
;bdraws = gauss(1)
;model:
U(alt1) = b2.dummy[(n,0.169831,0.086648)|(n,0.339661,0.086648)] * wetcon[1,2,0] +
b3[(n,0.05661,0.014441)] * infedu[8,12,16] +
b4[(n,0.069674,0.017774)] * toupre[1,2.5,5,7.5] +
b5[(n,-0.011322,0.00525)] * hhtax[5,10,20,40,80,120]/
U(alt2) = b2 * wetcon +
b3 * infedu +
b4 * toupre +
b5 * hhtax $
Linda