1. How can you tell if the procedure converged other than the warnings it sends to the log?
2. Where can I find information on the variables and layout of the ODS table outputs generated by DIFFS, and ESTIMATES (or any ods table output from the procedure)?
3. Following (2) - I cannot recall if SE of the estimates and differences are generated automatically in those datasets. What options are required for an LS means analysis to do this?
Hi, For your first question, have a look at this example in the documentation:
SAS Help Center: Repeated Measures
The Iteration History section tells you whether the model converged:
For your second question- this page in the documentation describes ODS table names and their variables:
SAS Help Center: ODS Table Names
I see that there are ODS tables named Diffs and Estimates, as you have in your code. Another easy way to figure out tables names is run the statement ODS TRACE ON; prior to your PROC MIXED code. With this, table names will be written to the log.
Your code looks ok. Is it providing output?
Hi, For your first question, have a look at this example in the documentation:
SAS Help Center: Repeated Measures
The Iteration History section tells you whether the model converged:
For your second question- this page in the documentation describes ODS table names and their variables:
SAS Help Center: ODS Table Names
I see that there are ODS tables named Diffs and Estimates, as you have in your code. Another easy way to figure out tables names is run the statement ODS TRACE ON; prior to your PROC MIXED code. With this, table names will be written to the log.
Your code looks ok. Is it providing output?
Hi, Could you provide us a copy of your log and output, so that we can review your code and any notes and errors?
You can find a pretty good read on the convergence status table here . This in the shared concepts and topics section of the SAS/STAT documentation.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Find more tutorials on the SAS Users YouTube channel.