Help with a DCE design that has multiple constraints
Posted: Tue Jan 25, 2022 2:31 am
Hi there,
I am currently working on a DCE design and was hoping I could get some feedback on where I’ve got to so far. This is only the second DCE I’ve worked on so I’m a relative beginner!
Background Details of the DCE
We are investigating the general public's preferences for different types of public health intervention related to diet. The six attributes that will be included in the DCE are:
• Specific type of public health intervention: (12 levels – Sugar Levy on Soft Drinks, Nutrition Labelling etc…)
• Framing (i.e. who is it aimed at) : Children, Adults, Both
• Equity (i.e. who is likely to benefit) : Low Income, Medium & High Income, All
• Agency (i.e. how much effort is required) : None, Some, A Lot
• Effectiveness : Obesity reduced by very little, a little, a lot
• Value for Money: Low, Moderate, High
In each choice situation, two alternatives will initially be shown, as well as a no choice option (unforced choice). If the participant chooses the no choice option, they will then be asked to complete a 'forced choice', with the no choice option removed.
As well as the main effects, we are interested in all the interactions between Equity, Agency, Effectiveness and Value for Money respectively.
As we don’t have any priors, our plan is:
1. Generate a first design (D1) and use this in a pilot study with 10% of our sample (100 respondents)
2. Create an efficient design (D2) using the pilot parameters as priors for the main survey with the other 90% of our sample (900 respondents)
The main complicating factor with this design is that there are a number of conditions in relation to the type of publication health intervention, the framing of the intervention and the agency of the intervention that need to implemented in order for the scenarios to be considered realistic. For example, one of the public health interventions is a National School Breakfast Programme, which can’t be aimed at adults. Moreover, another public health intervention is a ‘Sugar Levy on Soft Drinks’, which can’t be considered to require a lot of effort.
I’m aware that these constraints will result in a less efficient design and that this is necessary in order for the choices to be realistic, but I’m a little concerned that the sheer number of conditions we’ve currently got (particularly between the intervention and agency attributes) will lead to multicollinearity. If that’s the case, we might have to reconsider one or more of the attributes…
Ngene Code for D1 (so far)
If anyone has any comments or suggestions (on this particular design or my coding in general) it would be much appreciated.
Best wishes,
Tom
I am currently working on a DCE design and was hoping I could get some feedback on where I’ve got to so far. This is only the second DCE I’ve worked on so I’m a relative beginner!
Background Details of the DCE
We are investigating the general public's preferences for different types of public health intervention related to diet. The six attributes that will be included in the DCE are:
• Specific type of public health intervention: (12 levels – Sugar Levy on Soft Drinks, Nutrition Labelling etc…)
• Framing (i.e. who is it aimed at) : Children, Adults, Both
• Equity (i.e. who is likely to benefit) : Low Income, Medium & High Income, All
• Agency (i.e. how much effort is required) : None, Some, A Lot
• Effectiveness : Obesity reduced by very little, a little, a lot
• Value for Money: Low, Moderate, High
In each choice situation, two alternatives will initially be shown, as well as a no choice option (unforced choice). If the participant chooses the no choice option, they will then be asked to complete a 'forced choice', with the no choice option removed.
As well as the main effects, we are interested in all the interactions between Equity, Agency, Effectiveness and Value for Money respectively.
As we don’t have any priors, our plan is:
1. Generate a first design (D1) and use this in a pilot study with 10% of our sample (100 respondents)
2. Create an efficient design (D2) using the pilot parameters as priors for the main survey with the other 90% of our sample (900 respondents)
The main complicating factor with this design is that there are a number of conditions in relation to the type of publication health intervention, the framing of the intervention and the agency of the intervention that need to implemented in order for the scenarios to be considered realistic. For example, one of the public health interventions is a National School Breakfast Programme, which can’t be aimed at adults. Moreover, another public health intervention is a ‘Sugar Levy on Soft Drinks’, which can’t be considered to require a lot of effort.
I’m aware that these constraints will result in a less efficient design and that this is necessary in order for the choices to be realistic, but I’m a little concerned that the sheer number of conditions we’ve currently got (particularly between the intervention and agency attributes) will lead to multicollinearity. If that’s the case, we might have to reconsider one or more of the attributes…
Ngene Code for D1 (so far)
- Code: Select all
design
;alts = Alt_A*, Alt_B*, NoChoice
;rows = 120
;block = 10
;eff = (mnl,d)
;cond:
if(Alt_A.Intervention = 7, Alt_A.Framing = 1),
if(Alt_A.Intervention = 9, Alt_A.Framing >1),
if(Alt_A.Intervention = 11, Alt_A.Framing >1),
if(Alt_A.Intervention = 12, Alt_A.Framing >1),
if(Alt_B.Intervention = 7, Alt_B.Framing = 1),
if(Alt_B.Intervention = 9, Alt_B.Framing >1),
if(Alt_B.Intervention = 11, Alt_B.Framing >1),
if(Alt_B.Intervention = 12, Alt_B.Framing >1),
if(Alt_A.Intervention = 1, Alt_A.Agency = 3),
if(Alt_A.Intervention = 2, Alt_A.Agency = 3),
if(Alt_A.Intervention = 3, Alt_A.Agency >1),
if(Alt_A.Intervention = 4, Alt_A.Agency >1),
if(Alt_A.Intervention = 5, Alt_A.Agency >1),
if(Alt_A.Intervention = 6, Alt_A.Agency >1),
if(Alt_A.Intervention = 7, Alt_A.Agency >1),
if(Alt_A.Intervention = 8, Alt_A.Agency <3),
if(Alt_A.Intervention = 9, Alt_A.Agency <3),
if(Alt_A.Intervention = 10, Alt_A.Agency <3),
if(Alt_A.Intervention = 11, Alt_A.Agency <3),
if(Alt_A.Intervention = 12, Alt_A.Agency <3),
if(Alt_B.Intervention = 1, Alt_B.Agency = 3),
if(Alt_B.Intervention = 2, Alt_B.Agency = 3),
if(Alt_B.Intervention = 3, Alt_B.Agency >1),
if(Alt_B.Intervention = 4, Alt_B.Agency >1),
if(Alt_B.Intervention = 5, Alt_B.Agency >1),
if(Alt_B.Intervention = 6, Alt_B.Agency >1),
if(Alt_B.Intervention = 7, Alt_B.Agency >1),
if(Alt_B.Intervention = 8, Alt_B.Agency <3),
if(Alt_B.Intervention = 9, Alt_B.Agency <3),
if(Alt_B.Intervention = 10, Alt_B.Agency <3),
if(Alt_B.Intervention = 11, Alt_B.Agency <3),
if(Alt_B.Intervention = 12, Alt_B.Agency <3)
;model:
U(Alt_A) = b1 + b2_Intervention * Intervention [1,2,3,4,5,6,7,8,9,10,11,12]
+ b3_Framing * Framing [1,2,3]
+ b4_Equity * Equity [1,2,3]
+ b5_Agency * Agency [1,2,3]
+ b6_Value * Value [1,2,3]
+ b7_Effectiveness * Effectiveness [1,2,3]
+ b8_Equity_Agency_Interaction * Equity * Agency
+ b9_Equity_Value_Interaction * Equity * Value
+ b10_Equity_Effectiveness_Interaction * Equity * Effectiveness
+ b11_Agency_Value * Agency * Value
+ b12_Agency_Effectiveness * Agency * Effectiveness
+ b13_Value_Effectiveness * Value * Effectiveness
/
U(Alt_B) = b1 + b2_Intervention * Intervention
+ b3_Framing * Framing
+ b4_Equity * Equity
+ b5_Agency * Agency
+ b6_Value * Value
+ b7_Effectiveness * Effectiveness
+ b8_Equity_Agency_Interaction * Equity * Agency
+ b9_Equity_Value_Interaction * Equity * Value
+ b10_Equity_Effectiveness_Interaction * Equity * Effectiveness
+ b11_Agency_Value * Agency * Value
+ b12_Agency_Effectiveness * Agency * Effectiveness
+ b13_Value_Effectiveness * Value * Effectiveness
$
If anyone has any comments or suggestions (on this particular design or my coding in general) it would be much appreciated.
Best wishes,
Tom