BookmarkSubscribeRSS Feed
JJ27
Fluorite | Level 6
0

I'm trying to see if there is a statistically significant difference in ROC AUC by subgroups in SAS. I can't use roccontrast because I only have one model. Here is my codes:

 proc logistic data=data plots(only)=roc;
         by Race;
         model htn (event='1') = bmi ;
         ods output roccurve=ROCdata;
         run;

Race has 4 categories: hispanic, black, white and other

I tried roccontrast, didn't work. I would really appreciate any guidance on this!

1 REPLY 1
StatDave
SAS Super FREQ

See this note. When you are looking for a particular statistic in SAS, check the list of Frequently Asked-for Statistics (FASTats) in the Important Links section of the Statistical Procedures Community page.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 1 reply
  • 321 views
  • 2 likes
  • 2 in conversation