Pivot design with condition
Posted: Sat Mar 14, 2020 1:38 am
Hi Experts:
I am now trying homogeneous pivot design. I will have around 200 participants, around 50 are employed and 150 unemployed. Therefore, I have two segments, employed and unemployed. I have a reference for each group.The code is shown at the bottom.
1. Although all the attributes are continuous variables and can be considered having a linear relationship with utility function, I am wondering whether pivot design can accommodate non-linearity assumption? In tradition design, I can use 'dummy.attribute' to assume non linearity even though attribute is continuous variable. How should I do this in pivot design?
2. It seems pivot design does not allow 'condition' or 'requirement'. In my design, I want to set a condition: 'if alt2.A <alt1.A, then alt2.Price<alt1.Price'. Otherwise, there will be dominate choices. Any suggestion on this issue?
3. If pivot design can not solve the first and the second issue, I can return to the tradition design and have two separate designs, which I assume I can not analyse the two design together. Given my small sample size, I prefer combining two groups together. Or I just have one design, regardless the difference between employed and unemployed. In the analysis stage, I created a variable indicating employment status, and interactive this term with other attributes. But this design seems not very realistic, compared to pivot design.
4. Regarding the opt-out, I know pivot design can have two other alternatives around reference levels. I am thinking may I have three alternatives: reference alternative, new alternative, and participants' current status. If I have participants' current status, it seems setting reference alternative lost its meaning. To me, this design is similar to the tradition design, setting first alternative as reference, second as new alternative and third as status quo ('current status').
5. One minor question, in the paper Rose et al. (2008), participants were first asked to choice one among three alternatives, and then asked to make a choice among route A and B. From analytical perspective, how to analysis this data if the answer in 1st step is not consistent with the answer in 2nd step?
Sorry for asking so many questions. I am quite new to stated choice experiment and never use pivot before.
Thank you,
Connie
I am now trying homogeneous pivot design. I will have around 200 participants, around 50 are employed and 150 unemployed. Therefore, I have two segments, employed and unemployed. I have a reference for each group.The code is shown at the bottom.
1. Although all the attributes are continuous variables and can be considered having a linear relationship with utility function, I am wondering whether pivot design can accommodate non-linearity assumption? In tradition design, I can use 'dummy.attribute' to assume non linearity even though attribute is continuous variable. How should I do this in pivot design?
2. It seems pivot design does not allow 'condition' or 'requirement'. In my design, I want to set a condition: 'if alt2.A <alt1.A, then alt2.Price<alt1.Price'. Otherwise, there will be dominate choices. Any suggestion on this issue?
3. If pivot design can not solve the first and the second issue, I can return to the tradition design and have two separate designs, which I assume I can not analyse the two design together. Given my small sample size, I prefer combining two groups together. Or I just have one design, regardless the difference between employed and unemployed. In the analysis stage, I created a variable indicating employment status, and interactive this term with other attributes. But this design seems not very realistic, compared to pivot design.
4. Regarding the opt-out, I know pivot design can have two other alternatives around reference levels. I am thinking may I have three alternatives: reference alternative, new alternative, and participants' current status. If I have participants' current status, it seems setting reference alternative lost its meaning. To me, this design is similar to the tradition design, setting first alternative as reference, second as new alternative and third as status quo ('current status').
5. One minor question, in the paper Rose et al. (2008), participants were first asked to choice one among three alternatives, and then asked to make a choice among route A and B. From analytical perspective, how to analysis this data if the answer in 1st step is not consistent with the answer in 2nd step?
Sorry for asking so many questions. I am quite new to stated choice experiment and never use pivot before.
Thank you,
Connie
- Code: Select all
Design
;alts(employed)=alt1,alt2,opt
;alts(unemployed)=alt1,alt2,opt
;rows=12
;eff=fish(mnl,d)
;fisher(fish)=design1(employed[0.2:0.3],unemployed[0.7:0.8])
;model(employed):
U(alt1)=b1*A.ref[25] +b2*B.ref[10] +b3*C.ref[5] +b4*D.ref[15] +b5*E.ref[1] +b6*Price.ref[2700]/
U(alt2)=b1*A.piv[-10,0,10]+b2*B.piv[-5,0,5]+b3*C.piv[-5,-2,0,2]+b4*D.piv[-5,0,5]+b5*E.piv[-1,0,1]+b6*Price.piv[-500,0,500]
;model(unemployed):
U(alt1)=b1*A.ref[0] +b2*B.ref[20] +b3*C.ref[5] +b4*D.ref[25] +b5*E.ref[2] +b6*Price.ref[1500]/
U(alt2)=b1*A.piv[15,25,35]+b2*B.piv[-10,-5,0]+b3*C.piv[-5,-2,0,2]+b4*D.piv[-10,-5,0]+b5*E.piv[-2,0,1]+b6*Price.piv[500,750,1000]
$