<?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 Comparing Receiver Operating Characteristic Curves using SAS? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Receiver-Operating-Characteristic-Curves-using-SAS/m-p/572615#M28188</link>
    <description>&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;I am using following syntax to create compare ROC curves using SAS:&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&lt;DIV&gt;Code for multiple and Single ROC :&lt;/DIV&gt;&lt;DIV&gt;----------------------------------------------------------------------------------------------------------------------&lt;/DIV&gt;&lt;DIV&gt;FILENAME REFFILE&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;'/folders/myfolders/sasuser.v94/ExcelData/ACPC/finalMCI_AD_ninsstat.xlsx';&lt;BR /&gt;&lt;BR /&gt;PROC IMPORT DATAFILE=REFFILE DBMS=XLSX OUT=WORK.IMPORT;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC CONTENTS DATA=WORK.IMPORT;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS GRAPHICS ON;&lt;BR /&gt;&lt;BR /&gt;PROC LOGISTIC DATA=WORK.IMPORT PLOTS(ONLY)=ROC(ID=OBS);&lt;BR /&gt;MODEL GROUP(EVENT='0')=ACC_GSH_Conc PCC_GSH_Conc CINGULATE_GSH_Conc;&lt;BR /&gt;ROC 'ACC' ACC_GSH_Conc;&lt;BR /&gt;ROC 'PCC' PCC_GSH_Conc;&lt;BR /&gt;ROC 'CINGULATE' CINGULATE_GSH_Conc;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC LOGISTIC DATA=WORK.IMPORT PLOTS(ONLY)=ROC(ID=OBS);&lt;BR /&gt;MODEL GROUP(EVENT='0')=ACC_GSH_Conc;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS GRAPHICS OFF;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;Why SAS is giving two different values for single ROC curve? When I am plotting single ROC for 'alb' AUC value is different than I got by the syntax given above for single ROC (roc 'Albumin' alb;) with multiple ROC.&lt;/DIV&gt;</description>
    <pubDate>Thu, 11 Jul 2019 06:42:16 GMT</pubDate>
    <dc:creator>Gayatriv</dc:creator>
    <dc:date>2019-07-11T06:42:16Z</dc:date>
    <item>
      <title>Comparing Receiver Operating Characteristic Curves using SAS?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Receiver-Operating-Characteristic-Curves-using-SAS/m-p/572615#M28188</link>
      <description>&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;I am using following syntax to create compare ROC curves using SAS:&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&lt;DIV&gt;Code for multiple and Single ROC :&lt;/DIV&gt;&lt;DIV&gt;----------------------------------------------------------------------------------------------------------------------&lt;/DIV&gt;&lt;DIV&gt;FILENAME REFFILE&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;'/folders/myfolders/sasuser.v94/ExcelData/ACPC/finalMCI_AD_ninsstat.xlsx';&lt;BR /&gt;&lt;BR /&gt;PROC IMPORT DATAFILE=REFFILE DBMS=XLSX OUT=WORK.IMPORT;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC CONTENTS DATA=WORK.IMPORT;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS GRAPHICS ON;&lt;BR /&gt;&lt;BR /&gt;PROC LOGISTIC DATA=WORK.IMPORT PLOTS(ONLY)=ROC(ID=OBS);&lt;BR /&gt;MODEL GROUP(EVENT='0')=ACC_GSH_Conc PCC_GSH_Conc CINGULATE_GSH_Conc;&lt;BR /&gt;ROC 'ACC' ACC_GSH_Conc;&lt;BR /&gt;ROC 'PCC' PCC_GSH_Conc;&lt;BR /&gt;ROC 'CINGULATE' CINGULATE_GSH_Conc;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC LOGISTIC DATA=WORK.IMPORT PLOTS(ONLY)=ROC(ID=OBS);&lt;BR /&gt;MODEL GROUP(EVENT='0')=ACC_GSH_Conc;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ODS GRAPHICS OFF;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="nova-e-text nova-e-text--size-m nova-e-text--family-sans-serif nova-e-text--spacing-s nova-e-text--color-inherit redraft-text"&gt;Why SAS is giving two different values for single ROC curve? When I am plotting single ROC for 'alb' AUC value is different than I got by the syntax given above for single ROC (roc 'Albumin' alb;) with multiple ROC.&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Jul 2019 06:42:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Receiver-Operating-Characteristic-Curves-using-SAS/m-p/572615#M28188</guid>
      <dc:creator>Gayatriv</dc:creator>
      <dc:date>2019-07-11T06:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Receiver Operating Characteristic Curves using SAS?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Receiver-Operating-Characteristic-Curves-using-SAS/m-p/572869#M28190</link>
      <description>&lt;P&gt;As was suggested in your tracking entry on this question, you should use the NOFIT option in the MODEL statement to remove the second AUC estimate that is from the MODEL statement.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 17:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Receiver-Operating-Characteristic-Curves-using-SAS/m-p/572869#M28190</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-07-11T17:26:51Z</dc:date>
    </item>
  </channel>
</rss>

