Hello , I want to compare two ROC Curves via cross logistics using the ROCCONTRAST pathway. This is the Code: ods graphics on; proc logistic data=work.import plots=roc(id=prob); class SCAI_Erstmessung SCAI_Tag_1_ SCAI_min_num SCAI_max_num; model EntlassartKH_Binary = SCAI_Erstmessung SCAI_Tag_1_ SCAI_min_num SCAI_max_num/ nofit; roc 'SCAI_Erstmessung' SCAI_Erstmessung; roc 'SCAI_Tag_1_' SCAI_Erstmessung; roc 'SCAI_Tag_min_' SCAI_min_num; roc 'SCAI_Tag_max_' SCAI_max_num; roccontrast reference('SCAI_Tag_1_') / estimate e; run; Does SAS automatically integrate some adjustments to multivariable testing in the code? And if so, how can I identify them? Thankful for any suggestions! 🙂
... View more