BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vitaaquaticus
Fluorite | Level 6

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

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;

 

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

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;

 

vitaaquaticus
Fluorite | Level 6
I knew it was something simple. Thank you!!!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 2428 views
  • 0 likes
  • 2 in conversation