Hello! I have a question regarding the maximum limits of rows/blocks. I am designing an online survey to gather information about people's preferences on different environmental policies. We are expecting a large sample (10k+) but want to minimize the number of choice cards given to each participant.
I have two questions:
- 1. We’re wondering if you have recommendations or references for a structured way to minimize the number of choice cards received per person (i.e., maximize the number of rows and blocks), or is this just a choice made by the designer? For example, I have designed the survey with 75 rows and 25 blocks), so each person receives only 3 choice cards to minimize fatigue. Are there any issues with this design and general approach? Our code is copied below.
- 2.Are there constraints regarding the number of levels for a specific attribute. Since our sample size is likely quite large, would it be a problem if we had, say, 11 levels for one attribute, either in the design or analysis stage?
We plan is to obtain priors through a D-efficient design that optimizes MNL and then use these priors to design a Bayesian MNL model. We will estimate the final results using RPL. The attached code represents our preliminary design before obtaining priors.
Thank you in advance!
- Code: Select all
Design
;alts=option1*, option2*, opt-out
;rows=75
;eff=(mnl,d)
;alg=swap(stop=total(5000000iterations))
;block=25
;model:
U(option1)=
b2.dummy [0.00001|0.00002]*A[1,2,0]+
B3.dummy [0.00001|0.00002|0.00003|0.00004|0.00005]*B[1,2,3,4,5,0]+
B4.dummy [0.00001|0.00002|0.00003]*C[1,2,3,0]+
b5.dummy [0.00001|0.00002|0.00003|0.00004|0.00005|0.00006] *D[1,2,3,4,5,6,0] + b6[-0.00001]*price[5,25,50,75]/
U(option2)=b2*A+b3*B +b4*C +b5*D +b6*price/
U(opt-out)=asc
$