Bayesian design after pilot study
Posted: Thu Dec 21, 2023 3:10 pm
Hi all,
I am conducing an unlabelled experiment with two alternatives, 8 attributes (A-H) and 2-4 levels per attribute. These are all categorical variables that I have dummy coded. I also have a scenario with interaction terms associated with different attribute levels. I have conducted my pilot study and used STATA18 to conducted a conditional logit regression..
I want to conduct a Bayesian efficient design for the main survey, however less than half of my co-efficients are statistically signifcant.
I have assessed and reviewed the coefficients and only assigned Bayesian priors for values that were unexpected, e.g. negative sign and magnitude in comparison to other attribute levels. In total there are 9, which is in line with what you have suggested in previous posts for Bayesian priors <=10
My B-estimates are within range, however the d-error and s-estimates are very big which is concerning. Could you possibly review my syntax and provide any suggestions on where I should relax the Bayesian priors further, or make any suggestions for this study.
Thanks,
Annie
I am conducing an unlabelled experiment with two alternatives, 8 attributes (A-H) and 2-4 levels per attribute. These are all categorical variables that I have dummy coded. I also have a scenario with interaction terms associated with different attribute levels. I have conducted my pilot study and used STATA18 to conducted a conditional logit regression..
- Code: Select all
design
;alts = service1* , service2*
;rows = 60
;block = 6
;alg = mfederov (candidates = PP Candidate set V5_Nov 2023.csv)
;eff = (mnl,d,mean)
;bdraws = gauss(2)
;require:
service1.I = service2.I
;model:
U(service1) = b1.dummy[1.12|0.93|0.58] * A[3,2,1,0]
+ i1[-0.99] * A.dummy[3] * I[1,0]
+ i2[-0.72] * A.dummy[2] * I[1,0]
+ i3[(n,-0.91,0.37)] * A.dummy[1] * I[1,0]
+ b2.dummy[0.42|0.598] * B[2,1,0]
+ i4[-0.08] * B.dummy[2] * I[1,0]
+ i5[0.03] * B.dummy[1] * I[1,0]
+ b3.dummy[(n,-0.008,0.2376)] * C[1,0]
+ b4.dummy[1.03|0.88] * D[2,1,0]
+ i6[-1.07] * D.dummy[2] * I[1,0]
+ i7[-0.74] * D.dummy[1] * I[1,0]
+ b5.dummy[0.00035|(n,0.16,0.34)] * E[2,1,0]
+ b6.dummy[0.19|(n,-0.89,0.58)|(n,-0.59,0.57)] * F[3,2,1,0]
+ i8[(n,0.24,0.56)] * F.dummy[3] *I[1,0]
+ i9[1.65] * F.dummy[2] *I[1,0]
+ i10[(n,0.46,0.72)] * F.dummy[1] *I[1,0]
+ b7.dummy[0.97|0.74|1.18] * G[3,2,1,0]
+ i11[-0.43] * G.dummy[3] * I[1,0]
+ i12[0.39] * G.dummy[2] * I[1,0]
+ i13[(n,-0.16,0.81)] * G.dummy[1] * I[1,0]
+ b8.dummy[0.67|0.41|(n,0.21,0.34)] * H[3,2,1,0]
/
U(service2) = b1 * A
+ i1 * A.dummy[3] * I
+ i2 * A.dummy[2] * I
+ i3 * A.dummy[1] * I
+ b2 * B
+ i4 * B.dummy[2] * I
+ i5 * B.dummy[1] * I
+ b3 * C
+ b4 * D
+ i6 * D.dummy[2] * I
+ i7 * D.dummy[1] * I
+ b5 * E
+ b6 * F
+ i8 * F.dummy[3] * I
+ i9 * F.dummy[2] * I
+ i10 * F.dummy[1] * I
+ b7 * G
+ i11 * G.dummy[3] * I
+ i12 * G.dummy[2] * I
+ i13 * G.dummy[1] * I
+ b8 * H
$
I want to conduct a Bayesian efficient design for the main survey, however less than half of my co-efficients are statistically signifcant.
I have assessed and reviewed the coefficients and only assigned Bayesian priors for values that were unexpected, e.g. negative sign and magnitude in comparison to other attribute levels. In total there are 9, which is in line with what you have suggested in previous posts for Bayesian priors <=10
My B-estimates are within range, however the d-error and s-estimates are very big which is concerning. Could you possibly review my syntax and provide any suggestions on where I should relax the Bayesian priors further, or make any suggestions for this study.
Thanks,
Annie