I am new to DCE surveys and this is my first attempt in developing one. I will appreciate your guidance through the 2 questions I have in my submission below.
I am to conduct a survey among informal caregivers in an African country with these 5 attributes (and levels).
1. Setting (0,1)
2. Caregiving tasks (0,1,2)
3. Frequency [Days providing care per week] (0,1)
4. Time spent providing care per day (0,1)
5. Financial support (0,3000,6000, 9000).
I made 48 rows and I am hoping each participant will answer 12 questions/scenarios. Is the codes I wrote below correct?
- Code: Select all
Design
;alts = CaregiverA, CaregiverB, Neither
;rows = 48
;eff = (mnl,d)
;block = 4
;model:
U(CaregiverA) = setting.dummy[0] * SETTING[0,1]
+ tasks.dummy[0|0] * TASKS[0,1,2]
+ frequency[-.0001] * FREQUENCY[0,1]
+ time[-.0001] * TIME[0,1]
+ FinancialSupport[.0001] * FINANCIALSUPPORT[0,3000,6000,9000] ? FinancialSupport in Ug shillings
/
U(CaregiverB) = setting * SETTING
+ tasks * TASKS
+ frequency * FREQUENCY
+ time * TIME
+ financialsupport * FINANCIALSUPPORT
/
U(Neither) = 0
$
There is a second challenge.
There are 2 additional attributes I wanted to include although in a different way because they are dominant.
These attributes are;
Relationship to care recipient (Immediate family member, Other relative)
Expected duration of care provision (Long time, Temporary/short time)
Can I have these 2 additional attributes presented within the 12 scenarios in this way.
In the 1st 4 scenarios questions (1-4), the respondent is asked to imagine the care recipient is an immediate family member requiring care for a long time
The next 4 scenarios questions (5-8), the respondent is asked to imagine the care recipient is an immediate family member requiring care for a temporary period of time
The last 4 scenario questions (8-12), the respondent is asked to imagine the care recipient is a (other) relative requiring care for a temporary period of time
And do the same for the next set of 12 until the 48 rows are completed.
NB: I am excluding other relatives providing care for a long time.
I hope you understand what I mean. Is this possible and if yes, how would I include it in the codes?
Thank you in advance for your kind help
Ephraim