Why Do I Get Different Results between SAS and JMP for Variance Component analysis?
Case 1 - Crossed then Crossed
proc varcomp data = data method=TYPE1;
class Factor1 Factor2 Factor3;
model variable = Factor1 Factor2 Factor3;
run;
= JMP - Quality and Process - Variability / Attribute Gauge Chart - Model Type - Crossed
(If "Main Effect" is selected, the result is the same with SAS.)
Case 2 - Nested then Crossed
proc varcomp data = data method=TYPE1;
class Factor1 Factor2 Factor3;
model variable = Factor1 Factor2(Factor1) Factor3;
run;
= JMP - Quality and Process - Variability / Attribute Gauge Chart - Model Type - Nested then Crossed
Case 3 - Crossed then Nested
proc varcomp data = data method=TYPE1;
class Factor1 Factor2 Factor3;
model variable = Factor1 Factor2 Factor3(Factor2);
run;
= JMP - Quality and Process - Variability / Attribute Gauge Chart - Model Type - Crossed then Nested
It was confirmed that the SAS and JMP results of Variance Component are the same when the number of factors is 1 or 2.
However, the results are different for the above cases with 3 factors.\
I would really appreciate it ...if you could tell me why the results of the two programs are different !
MGO