Greetings all,
I’m working on a design for a CE with two options and a SQ (Alt=3), with each option having the same five attributes. Most of the attributes are ordinal and follow a format such as 1=Low diversity, 2=Medium diversity, 3=High diversity.
I want Level=1 to serve as the base, as I find that to be intuitive. I understand Ngene treats the "furthest to the right" level as the base, so I specify my set of dummy variable levels as 3, 2, 1. Assume Level=1 is the base, my prior for Level=2 is in the range from 0 to 0.25, and my prior for Level=3 is in the range from 0 to 0.5. In practice, this is for a pilot test with no apparent equivalents in the literature, so my priors essentially reflect a coarse expectation for coefficients: Level 3 > Level 2 > 0. I specify:
b2.dummy[(u,0,.5)|(u,0,.25)] * Div[3,2,1]
I believe this is correct syntax from what I've read, but I don't recall it being treated explicitly in the manual, and my search of "dummy base level" in this forum generated an error message. Thus, I welcome any feedback -- is this the way to have Ngene treat Level=1 as the base? I've pasted the full syntax below.
Thank you very much in advance for any feedback on this.
Kreg
design
;alts = 1*, 2*, 3
;rows = 12
;block = 3
;eff=(rppanel, d)
;rep=100
;rdraws=halton(100)
;model:
U(1)= b0[(u,0,1)] + b1.dummy[(u,0,1)] * Qual[2,1] + b2.dummy[(u,0,.5)|(u,0,.25)] * Div[3,2,1] + b3.dummy[(u,0,.5)|(u,0,.25)] * Land[3,2,1] +
b4.dummy[(u,0,.5)|(u,0,.25)] * Facil[3,2,1] + b5[u,-0.1,0] * Fee[0,2,5,10]/
U(2)= b0 + b1 * Qual + b2 * Div + b3 * Land + b4 * Facil + b5 * Fee
$