SAS PROC MIXED and JMP Output are Different
Dear All,I am trying to compare the results of SAS PROC Mixed and JMP mixed model. I thought the results would be the same, but they are not. I hope JMP can give the same results of SAS PROC MIXED. Could anyone help me with it?My SAS code as following:PROC MIXED DATA = DATA;CLASS Sub Condition Stimuli;MODEL Y = Condition / SOLUTION;RANDOM Sub;RANDOM Stimuli(Condition);run;The results for the fixed...