Hi all I am using SAS to do a conjoint analysis for my master thesis.I am trying to get the output of choice sets but not getting anything.This is the code.I would much appreciate your help. %mktruns(32 23) %mktex (3 22 3),n=36,seed=100 %macro restrict;bad=(x1=1& x4=1) + (x1=3& x4=3) %mend; %mktex(3 22 3),n=36 , seed=100,restrictions=restrict) ; Procprint data=design; %mktlab (data=design , int=f1-f3 ) %choiceff ( data=final,model=class (x1-x5) , nsets=18 , flag=f1-f3 , beta=2 1 21 21 21 21,seed=100, maxiter=20) Proc print ; id set ; by set ; run
... View more