May I please ask what this " Convergence criteria met but final
hessian is not positive definite" outputed by proc mixed means?
my code is
proc mixed data=temp;
class Subject factory;
model log_exp = / solution;
random int / subject=Subject solution;
random int / subject=factory solution;
random int / subject=factory *Subject solution;
run;
Usually, this means the calculations came up with a negative value for one of the variance components. Take a look at the Covariance Parameter Estimates, and you should see one set to 0. You may need to adjust your model accordingly to avoid this situation.
SAS Innovate 2025: Save the Date
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.