The number of points in my PROC MIXED model exceeds 5,000 so I had to include "maxpoints=none" in the plots code and the code suppresses the diagnostic plots. I would like to see the plots. How do I enable the plots? Thank you! p.s. I am using SAS Enterprise Guide.
ods graphics on;
PROC MIXED DATA = WORK.Data_Final_noAugust_SS plots(MAXPOINTS=none);
CLASS Year Month Cape Site Transect Quadrat;
MODEL 'Density'n = Year Month(Year) Year|Cape/SOLUTION ddfm = KR CL ALPHA=0.05 INTERCEPT;
RANDOM Quadrat(Transect) Transect(Site) Site(Cape) /CL ALPHA=0.05 TYPE=VC;
LSMEANS Year|Cape / PDIFF CL ALPHA=0.05;
RUN;
ods graphics off;
Specify the names of the plots on the PLOTS= option. If you want to see all the possible plots (this might be a lot!) you can use PLOTS=ALL, like this:
proc mixed ... plots(MAXPOINTS=none)=ALL;
Specify the names of the plots on the PLOTS= option. If you want to see all the possible plots (this might be a lot!) you can use PLOTS=ALL, like this:
proc mixed ... plots(MAXPOINTS=none)=ALL;
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.
Find more tutorials on the SAS Users YouTube channel.