Constraints regarding cost attribute
Posted: Thu Feb 22, 2024 12:58 am
Hello,
I am currently in the midst of designing an unlabelled choice experiment and I am unsure about including constraints to ensure realistic choice sets.
The respondents are supposed to choose amongst 3 unlabelled options or an opt-out alternative ("I do not want to choose any of the alternatives.").
In order to avoid unrealistiv choice sets, I have to account for the fact that the cost attribute is dependent on other attributes in reality: A higher level in "A" as well as "B" should always be combined with a larger or equal level in the "cost" attribute compared to lower levels.
I have 3 questions regarding this design:
1) Are these kind of constraints viable or do they lead to difficulties in generating a design or interpreting the results in the end? I am wondering about the latter, since I do not know of unlabelled choice experiments in the literature that impose such cost constraints.
2) How would I go on to implement this in my design? I am unsure whether ";cond", ";require" or ";reject" is the correct way to implement these constraints.
3) Is my specification of the opt-out alternative correct? I found this specification in the forum but the Ngene manual (https://choice-metrics.com/NgeneManual120.pdf) (p. 109) says to not include a utility function for the opt-out option at all.
I am looking forward for any tips/comments.
Tom
I am currently in the midst of designing an unlabelled choice experiment and I am unsure about including constraints to ensure realistic choice sets.
The respondents are supposed to choose amongst 3 unlabelled options or an opt-out alternative ("I do not want to choose any of the alternatives.").
In order to avoid unrealistiv choice sets, I have to account for the fact that the cost attribute is dependent on other attributes in reality: A higher level in "A" as well as "B" should always be combined with a larger or equal level in the "cost" attribute compared to lower levels.
- Code: Select all
Design
;alts = opt1*, opt2*, opt3*, optout
;rows = 180
;block = 30
;eff = (mnl, d)
? Conditions go here
;model:
U(opt1) = b1[0.000001]*A[1,2,3] + b2[0.000001]*B[1,2,3] + b3*C[20,40,60,80] + b4[-0.000001]*cost[20000:80000:10000] + b5[0.000001]*E[500:800:100] + b6[0.000001]*F[2,4,6,8] /
U(opt2) = b1*A+ b2*B+ b3*C+ b4*cost+ b5*E+ b6*F/
U(opt3) = b1*A+ b2*B+ b3*C+ b4*cost+ b5*E+ b6*F/
U(optout) = b7[0]
$
I have 3 questions regarding this design:
1) Are these kind of constraints viable or do they lead to difficulties in generating a design or interpreting the results in the end? I am wondering about the latter, since I do not know of unlabelled choice experiments in the literature that impose such cost constraints.
2) How would I go on to implement this in my design? I am unsure whether ";cond", ";require" or ";reject" is the correct way to implement these constraints.
3) Is my specification of the opt-out alternative correct? I found this specification in the forum but the Ngene manual (https://choice-metrics.com/NgeneManual120.pdf) (p. 109) says to not include a utility function for the opt-out option at all.
I am looking forward for any tips/comments.
Tom