Efficient design pilot test
Posted: Wed Dec 20, 2023 9:53 pm
Dear Ngene users,
I am planning on running a pilot test with an efficient design, so with uninformative priors. I have 3 unlabelled alternatives including 1 opt-out.
Here are my attributes and levels:
Support type 1 attribute --> 3 levels (none, personalized, collective), dummy variable
Support type 2 attribute --> 2 levels (personalized, collective), dummy variable
Mode of plantation attribute --> 3 levels (individual, collective form1, collective form2), dummy variable
Cost attribute --> 4 levels (40000 €,44000 €,48000 €,52000€), continious variable
Mode of spraying --> 3 levels (individual, collective form1, collective form2), dummy variable
Here is my associated Ngene code:
My questions are:
1. First, did I get the computation for design size right? nb parameters = 2 + 1 (2 levels) + 2 + 1 (continious) + 2 + 1 (interaction term) = 9 so we have (9/2)*3 = 13,5 but since I have attributes with 3, 2 and 4 levels I took design size= 24 as it can be divided by 3,2 and 4.
2. Is the level range of my monetary/cost attribute sufficient? In other words, is the variation between 40000, 44000,48000 and 52000 sufficient? Should I have a 5th level for my monetary attribute or are 4 levels fine?
3. My constraints were set to avoid unrealistic scenarios.
3.1: These contraints do not seem to work as I still get a scenario with 52K in cost and plantation with 2. Am I doing something wrong with the syntax?
3.2.These constraints I think however can create some correlation between attribute plantation and attribute cost (pearson correlation coeff of 0.2). For what values of pearson correlation coefficient should I be worried? Over which threshold?
4. Are my uninformative priors for the pilot test correctly set? I am not sure if I need one for my interaction term for instance.
5. Despite my uninformative priors, Ngene still give me a value for S estimate of S=19154418417.5871 as well as very high Sp estimates, is that normal? Shouldn't it be zero?
6. Do you have any other comments or suggestions about my code before I run the pilot test?
Thank you for your help!
Best,
Gaëlle
I am planning on running a pilot test with an efficient design, so with uninformative priors. I have 3 unlabelled alternatives including 1 opt-out.
Here are my attributes and levels:
Support type 1 attribute --> 3 levels (none, personalized, collective), dummy variable
Support type 2 attribute --> 2 levels (personalized, collective), dummy variable
Mode of plantation attribute --> 3 levels (individual, collective form1, collective form2), dummy variable
Cost attribute --> 4 levels (40000 €,44000 €,48000 €,52000€), continious variable
Mode of spraying --> 3 levels (individual, collective form1, collective form2), dummy variable
Here is my associated Ngene code:
- Code: Select all
design
;alts = alt1*, alt2*, alt3
;rows = 24
;eff = (mnl,d)
;block = 4
;alg = mfederov
;reject:
alt2.cost=52 and alt2.plantation=2,
alt2.cost=52 and alt2.plantation=3,
alt1.cost=52 and alt1.plantation=2,
alt1.cost=52 and alt1.plantation=3,
alt2.cost=40 and alt2.plantation=1,
alt1.cost=40 and alt1.plantation=1
;model:
U(alt1)= b1.dummy[0.00001|0.00002]*support[1,2,3]
+ b2.dummy[0.0001|0.0001]*plantation[1,2,3]
+ b3[-0.00001]*cost[40000,44000,48000,52000]
+ b4.dummy[0.0001|0.0001]*spraying[1,2,3]
+ b5.dummy[0.00002]*suivi[1,2]
+ b6[0.00001]*cost*plantation /
U(alt2)= b1*support
+ b2*plantation
+ b3*cost
+ b4*spraying
+ b5*suivi
+ b6*cost*plantation /
U(alt3)= b0[0]
$
My questions are:
1. First, did I get the computation for design size right? nb parameters = 2 + 1 (2 levels) + 2 + 1 (continious) + 2 + 1 (interaction term) = 9 so we have (9/2)*3 = 13,5 but since I have attributes with 3, 2 and 4 levels I took design size= 24 as it can be divided by 3,2 and 4.
2. Is the level range of my monetary/cost attribute sufficient? In other words, is the variation between 40000, 44000,48000 and 52000 sufficient? Should I have a 5th level for my monetary attribute or are 4 levels fine?
3. My constraints were set to avoid unrealistic scenarios.
3.1: These contraints do not seem to work as I still get a scenario with 52K in cost and plantation with 2. Am I doing something wrong with the syntax?
3.2.These constraints I think however can create some correlation between attribute plantation and attribute cost (pearson correlation coeff of 0.2). For what values of pearson correlation coefficient should I be worried? Over which threshold?
4. Are my uninformative priors for the pilot test correctly set? I am not sure if I need one for my interaction term for instance.
5. Despite my uninformative priors, Ngene still give me a value for S estimate of S=19154418417.5871 as well as very high Sp estimates, is that normal? Shouldn't it be zero?
6. Do you have any other comments or suggestions about my code before I run the pilot test?
Thank you for your help!
Best,
Gaëlle