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

Hi all,

 

I am using the INFLUENCE option to get diagnostic plots for logistic models. Is it possible to suppress influence the diagnostic output but keep the plots?

 

Thanks a lot,

Lizi

1 ACCEPTED SOLUTION

Accepted Solutions
StatDave
SAS Super FREQ

Just use the plots(only)=influence option in the PROC LOGISTIC statement, but omit the INFLUENCE option in the MODEL statement.

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

Every table and graph in ODS has a name. You can use the ODS EXCLUDE statement to exclude any table or graph. In this case, the table is named "OutputStatistics," so use

 

proc reg data=sashelp.class plots=diagnostics;
model weight = height age / influence;
ods exclude OutputStatistics;
quit;

To discover the names of tables and graphs, see "Find the ODS table names produced by any SAS procedure."

StatDave
SAS Super FREQ

Just use the plots(only)=influence option in the PROC LOGISTIC statement, but omit the INFLUENCE option in the MODEL statement.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2712 views
  • 3 likes
  • 3 in conversation