Hello,
Please I need to save in a SAS dataset the comparison of means between the risk groups as shown below:
the code I used is:
PROC GLM DATA=NUTR OUTSTAT=PLEASE;
class riskc;
model VITB3=riskc;
means riskc / tukey;
run;
However I cannot track the output in a saved dataset under WORK library.
Thanks for the help!
Add the following line into your PROC GLM
ods output cldiffs=cldiffs;
It worked! thank you .
I was using the syntax 'diffs' instead ..
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.