Hi Ngene team,
I am very new to choice experiments and using Ngene. I am conducting a DCE to look at choice preferences between services for a future pandemic response.
I have two alternatives, eight attributes, and levels ranging between 3-5. All of my levels are qualitative/categorical and have dummy coded as such.
design
;alts = service1* , service2*
;rows = 60
;block = 5
?;alg = mfederov
;eff = (mnl,d)
;model:
U(service1) = b1.dummy[0.3|-0.1|0.1] * A_care[0,1,2,3]
+ b2.dummy[0.3|-0.1] * A_education[0,1,2]
+ b3.dummy[0.5|0.1] * Birth_place[0,1,2]
+ b4.dummy[-0.5|0.1|0.2] * Duration[0,1,2,3]
+ b5.dummy[0.2|-0.3|0.1|0.15] * SP_after_birth[0,1,2,3,4]
+ b6.dummy[0.15|-0.3|0.1] * Breastfeeding[0,1,2,3]
+ b7.dummy[0.3|-0.3|0.1] * P_care[0,1,2,3]
+ b8.dummy[0.2|0.5|0.1] * SP_outpatients[0,1,2,3]
/
U(service2) = b1 * A_care
+ b2 * A_education
+ b3 * Birth_place
+ b4 * Duration
+ b5 * SP_after_birth
+ b6 * Breastfeeding
+ b7 * P_care
+ b8 * SP_outpatients
$
I need to reject certain combinations between attributes as they are not realistic, however it seems that I have reached a quota on such reject commands. I have used the commands below and am only able to simultaneously reject up to three at a time. (although just attempted and received an "Error:A logical expression has an incompatible element:"
?service1.Birth_place=2 and service1.Duration=0,
?service1.Birth_place=2 and service1.Duration=1,
?service1.Birth_place=2 and service1.Duration=2,
?service2.Birth_place=2 and service2.Duration=0,
?service2.Birth_place=2 and service2.Duration=1,
?service2.Birth_place=2 and service2.Duration=2,
?service1.Birth_place=2 and service1.SP_after_birth=0,
?service1.Birth_place=2 and service1.SP_after_birth=1,
?service1.Birth_place=2 and service1.SP_after_birth=2,
?service1.Birth_place=2 and service1.SP_after_birth=3,
?service1.Birth_place=2 and service1.SP_after_birth=4,
?service2.Birth_place=2 and service2.SP_after_birth=0,
?service2.Birth_place=2 and service2.SP_after_birth=1,
?service2.Birth_place=2 and service2.SP_after_birth=2,
?service2.Birth_place=2 and service2.SP_after_birth=3,
?service2.Birth_place=2 and service2.SP_after_birth=4,
I'm wondering if there are any other constraint methods I could use? Or even if it is possible to output N/A in attribute levels for attributes (Duration and SP_after_birth)
Thanks in advance,
Annie