<?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: c-statistic (AUC) and Wilcoxon rank sum test P-value difference in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609031#M17794</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/150395"&gt;@LAYMAN_YO&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Could you elaborate on the difference of P-values (Chi-square) between AUC (ROC1-reference) with NPAR1WAY and Wilcoxon rank sum test with Logistic.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Could you be more specific and state exactly which commands or options in PROC NPAR1WAY you are referring to?&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2019 13:02:42 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-12-03T13:02:42Z</dc:date>
    <item>
      <title>c-statistic (AUC) and Wilcoxon rank sum test P-value difference</title>
      <link>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/608980#M17785</link>
      <description>&lt;P&gt;Could you elaborate on the difference of P-values (Chi-square) between AUC (ROC1-reference) with PROC LOGISTIC and Wilcoxon rank sum test with NPAR1WAY.&lt;/P&gt;&lt;P&gt;ROC curve area represents the estimate of p''=Pr(X1&amp;lt;X2)+Re(X1=X2) / 2 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The WMW statistic can be used to test whether the AUC is significantly different from 0.5 (Bamber&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="ref-lnk"&gt;&lt;A href="https://www.tandfonline.com/doi/full/10.1080/00031305.2017.1305291#" target="_blank" rel="noopener"&gt;1975&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;). A convenient way to generate a 95% confidence interval for the ROC curve area [and hence Pr(&lt;/SPAN&gt;&lt;SPAN&gt;X1&amp;lt;&amp;nbsp;X2&lt;/SPAN&gt;&lt;SPAN&gt;)] is to use the ROC option in PROC LOGISTIC.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;data abc;&lt;BR /&gt;input arm y;&lt;BR /&gt;cards;&lt;BR /&gt;2 11&lt;BR /&gt;1 12&lt;BR /&gt;2 13&lt;BR /&gt;1 14&lt;BR /&gt;2 15&lt;BR /&gt;1 16&lt;BR /&gt;1 17&lt;BR /&gt;1 18&lt;BR /&gt;1 19&lt;BR /&gt;1 20&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;proc logistic data=abc;&lt;BR /&gt;class arm;&lt;BR /&gt;model arm(event='1')=y /outroc=troc;&lt;BR /&gt;roc;&lt;BR /&gt;roccontrast / estimate e;&lt;BR /&gt;run;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;ROC Contrast Estimation and Testing Results by Row&lt;/DIV&gt;&lt;DIV align="center"&gt;Contrast Estimate StandardError 95% WaldConfidence Limits Chi-Square Pr &amp;gt; ChiSq&lt;/DIV&gt;&lt;DIV align="center"&gt;ROC1 - Model &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;-0.3571&lt;/TD&gt;&lt;TD&gt;0.1290&lt;/TD&gt;&lt;TD&gt;-0.6099&lt;/TD&gt;&lt;TD&gt;-0.1044&lt;/TD&gt;&lt;TD&gt;7.6705&lt;/TD&gt;&lt;TD&gt;0.0056&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc npar1way data=abc wilcoxon;&lt;BR /&gt;class arm;&lt;BR /&gt;var y;&lt;BR /&gt;exact wilcoxon ;&lt;BR /&gt;run;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Wilcoxon Two-Sample Test&lt;/DIV&gt;&lt;DIV align="center"&gt;Statistic&amp;nbsp;(S) Z Pr&amp;nbsp;&amp;lt;&amp;nbsp;Z Pr&amp;nbsp;&amp;gt;&amp;nbsp;|Z| t Approximation ExactPr&amp;nbsp;&amp;lt;&amp;nbsp;Z Pr&amp;nbsp;&amp;gt;&amp;nbsp;|Z| Pr&amp;nbsp;&amp;lt;=&amp;nbsp;S Pr&amp;nbsp;&amp;gt;=&amp;nbsp;|S-Mean|Z&amp;nbsp;includes&amp;nbsp;a&amp;nbsp;continuity&amp;nbsp;correction&amp;nbsp;of&amp;nbsp;0.5. &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;9.0000&lt;/TD&gt;&lt;TD&gt;-1.5954&lt;/TD&gt;&lt;TD&gt;0.0553&lt;/TD&gt;&lt;TD&gt;0.1106&lt;/TD&gt;&lt;TD&gt;0.0725&lt;/TD&gt;&lt;TD&gt;0.1451&lt;/TD&gt;&lt;TD&gt;0.0583&lt;/TD&gt;&lt;TD&gt;0.1167&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Kruskal-Wallis TestChi-Square DF Pr&amp;nbsp;&amp;gt;&amp;nbsp;ChiSq &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;2.9221&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0.0874&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;What is the relationship between&amp;nbsp; ROC1-Mo Chisq and K-W Chisq ?&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Dec 2019 01:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/608980#M17785</guid>
      <dc:creator>LAYMAN_YO</dc:creator>
      <dc:date>2019-12-04T01:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: c-statistic (AUC) and Wilcoxon rank sum test P-value difference</title>
      <link>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609014#M17790</link>
      <description>&lt;P&gt;Good question.&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;AUC (ROC1-reference) with NPAR1WAY&amp;nbsp;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You mean K-S test ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I think both test are non-parameter test,both are similar , but H0 is different .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;K-S test H0: whether&amp;nbsp; these two class/level are coming from the same polulation&amp;nbsp; or not .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Wilcoxon rank sum test is more likt t-test (the non-parameter method of t-test).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;its H0 : whether these two class/level's mean(expect value) are the same .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Better post it at Stat forum and calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 11:34:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609014#M17790</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-03T11:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: c-statistic (AUC) and Wilcoxon rank sum test P-value difference</title>
      <link>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609031#M17794</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/150395"&gt;@LAYMAN_YO&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Could you elaborate on the difference of P-values (Chi-square) between AUC (ROC1-reference) with NPAR1WAY and Wilcoxon rank sum test with Logistic.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Could you be more specific and state exactly which commands or options in PROC NPAR1WAY you are referring to?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 13:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609031#M17794</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-03T13:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: c-statistic (AUC) and Wilcoxon rank sum test P-value difference</title>
      <link>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609052#M17801</link>
      <description>&lt;P&gt;As stated in the latter part of&amp;nbsp;&lt;A href="http://support.sas.com/kb/39109" target="_self"&gt;this note&lt;/A&gt;, the KS test assessed whether the event and nonevent populations differ, not just in location, but also in shape. Since interest usually is focused on a location shift (differing means), that test is a bit too broad.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 14:10:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/c-statistic-AUC-and-Wilcoxon-rank-sum-test-P-value-difference/m-p/609052#M17801</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-12-03T14:10:06Z</dc:date>
    </item>
  </channel>
</rss>

