<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ROC Curve Comparison using ROC Contrast in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920864#M45745</link>
    <description>I think answer is no . &lt;BR /&gt;For your code , there are four X variables correspond to four ROC curve separately , you can not adjust some multivariable in it. &lt;BR /&gt;If you want "adjust multivariable " ,then you need to output these ROC curve one by one and compare them afterwards.&lt;BR /&gt;&lt;BR /&gt;Check this :&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/45/339.html" target="_blank"&gt;https://support.sas.com/kb/45/339.html&lt;/A&gt;</description>
    <pubDate>Tue, 19 Mar 2024 01:58:33 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-03-19T01:58:33Z</dc:date>
    <item>
      <title>ROC Curve Comparison using ROC Contrast</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920832#M45743</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compare two ROC Curves via cross logistics using the ROCCONTRAST pathway.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the Code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;ods graphics on;&lt;/DIV&gt;&lt;DIV&gt;proc logistic data=work.import plots=roc(id=prob);&lt;/DIV&gt;&lt;DIV&gt;class SCAI_Erstmessung SCAI_Tag_1_ SCAI_min_num SCAI_max_num;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;model EntlassartKH_Binary = SCAI_Erstmessung SCAI_Tag_1_ SCAI_min_num SCAI_max_num/ nofit;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;roc 'SCAI_Erstmessung' SCAI_Erstmessung;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;roc 'SCAI_Tag_1_' SCAI_Erstmessung;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;roc 'SCAI_Tag_min_' SCAI_min_num;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;roc 'SCAI_Tag_max_' SCAI_max_num;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;roccontrast reference('SCAI_Tag_1_') / estimate e;&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does SAS automatically integrate some adjustments to multivariable testing in the code? And if so, how can I identify them?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thankful for any suggestions! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 20:21:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920832#M45743</guid>
      <dc:creator>Le_h</dc:creator>
      <dc:date>2024-03-18T20:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: ROC Curve Comparison using ROC Contrast</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920835#M45744</link>
      <description>&lt;P&gt;It's not clear what you want. What "adjustments" do you mean?&amp;nbsp; If you mean that you want to adjust for performing multiple tests, then you can do that by saving the table of the comparisons and using an p-value adjustment method in PROC MULTTEST. You can save the comparisons table by adding this ODS OUTPUT statement in the PROC LOGISTIC step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output roccontrastestimate=roccon;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and then do the comparison in MULTTEST using the INPVALUES= option like below.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc multtest inpvalues(probchisq)=roccon holm;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;See the example titled "Inputting Raw p-Values" in the MULTTEST documentation.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 20:42:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920835#M45744</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-03-18T20:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: ROC Curve Comparison using ROC Contrast</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920864#M45745</link>
      <description>I think answer is no . &lt;BR /&gt;For your code , there are four X variables correspond to four ROC curve separately , you can not adjust some multivariable in it. &lt;BR /&gt;If you want "adjust multivariable " ,then you need to output these ROC curve one by one and compare them afterwards.&lt;BR /&gt;&lt;BR /&gt;Check this :&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/45/339.html" target="_blank"&gt;https://support.sas.com/kb/45/339.html&lt;/A&gt;</description>
      <pubDate>Tue, 19 Mar 2024 01:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ROC-Curve-Comparison-using-ROC-Contrast/m-p/920864#M45745</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-03-19T01:58:33Z</dc:date>
    </item>
  </channel>
</rss>

