Hi everybody, I have a question about designing a discrete choice experiment. I have 2 alternatives (Alt1 and Alt2) and also a no-choice option. My alternatives are unlabeled. I have 4 attributes (X1, X2, X3, X4) with their levels mentioned below: X1: 0=no 1=yes X2: 0=no 1=yes X3: 0=no 1=yes X4: %10 %25 %50 %75 Based on what I read, I created two different versions. Here are the versions and some results; Version 1; %MktRuns(2 2 2 4)
%MktEx (2 2 2 4, n=16)
%choiceff(data=design,
model=class(x1-x4/sta),
nsets=8,
flags=2,
maxiter=60,
seed=123,
options=relative,
beta=zero) Relative D-eff = 64.90 D-error = 0.19 Version 2; %MktRuns(2 2 2 4)
%MktEx (8 2**3 4, n=16, seed=123)
%mktlab(data=randomized, vars=Set x1-x4)
proc sort data=Final; by set; run;
proc print; by set; id set; run;
%choiceff(data=final,
init=final(keep=set),
model=class(x1-x4/sta),
nsets=8,
nalts=2,
options=relative,
beta=zero)
%mkteval(data=Best) Relative D-eff = 79.3 D-error = 0.12 Which one is the better result? or can I create a better version? Thank you so much!
... View more