<?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: Wilcoxon signed rank and Mc Nemar tests in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889636#M44104</link>
    <description>I don't understand, there is not Paired Wilcoxon test, Wilcoxon signed rank  is just the non-parameter version of pair ttest ,it is for continuous variable ,not category variable.&lt;BR /&gt;&lt;BR /&gt;But McNemar test is for the paired category variable(a.k.a  freq/count data).  &lt;BR /&gt;There are two different statistical method.&lt;BR /&gt;&lt;BR /&gt;And since it is about stat question,better post it at stat forum:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/bd-p/statistical_procedures" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/bd-p/statistical_procedures&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; maybe give you a help.&lt;BR /&gt;</description>
    <pubDate>Thu, 17 Aug 2023 11:50:18 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2023-08-17T11:50:18Z</dc:date>
    <item>
      <title>Wilcoxon signed rank and Mc Nemar tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889521#M44100</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Is it possible to perform the Paired Wilcoxon test and the McNemar using the &lt;STRONG&gt;Paired&lt;/STRONG&gt; variable in the dataset below? Or do I have to transform the data to use proc univariate (diff)?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;PRE&gt;data match;
  input Id $  case_control $ match_caseid $ paired age gender $ weight ethnic $;
datalines;
A1 Case    A1 1 20 F 56 Balck
A2 Control A1 1 23 F 60 Black
A3 Control A1 1 22 F 65 Black
B1 Case    B1 2 30 M 70 Asian
B2 Control B1 2 35 M 47 Asian
B3 Control B1 2 33 M 75 Unknown
C1 Case    C1 3 40 M 80 White
C2 Control C1 3 38 M 73 White
D1 Case    D1 4 47 M 50 Other
D2 Control D1 4 41 M 58 Other 
D3 Control D1 4 50 M 49 Unknown
D4 Control D1 4 63 M 77 Other
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Aug 2023 15:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889521#M44100</guid>
      <dc:creator>Liamb</dc:creator>
      <dc:date>2023-08-16T15:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Wilcoxon signed rank and Mc Nemar tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889526#M44101</link>
      <description>&lt;P&gt;How do you expect to use a PAIRED test with THREE values?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pair very strongly implies 2. And in the case of paired statistics pretty much a requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps you need to rephrase exactly the meaning of the resulting test instead of requiring a specific test.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 16:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889526#M44101</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-16T16:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Wilcoxon signed rank and Mc Nemar tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889529#M44102</link>
      <description>Case were match to 1, 2 or 3 controls so a case with 1  control corresponds&lt;BR /&gt;to 1 pair, a case with 2 controls corresponds to 2 pairs and a case with 3&lt;BR /&gt;controls corresponds to 3 pairs.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Aug 2023 16:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889529#M44102</guid>
      <dc:creator>Liamb</dc:creator>
      <dc:date>2023-08-16T16:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Wilcoxon signed rank and Mc Nemar tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889619#M44103</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cases were matched with 1 or several controls (match_caseid) and I want to perform Wilcoxon signed rank test and the McNemar using &lt;STRONG&gt;case_control&lt;/STRONG&gt; and &lt;STRONG&gt;Paired&lt;/STRONG&gt; variables in the dataset below? It is possible?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data match;
  input Id $  case_control $ match_caseid $ paired age gender $ weight ethnic $ ;
datalines;
A1 Case    .  1 20 F 56 Balck
A2 Control A1 1 23 F 60 Black
A3 Control A1 1 22 F 65 Black
B1 Case    .  2 30 M 70 Asian
B2 Control B1 2 35 M 47 Asian
B3 Control B1 2 33 M 75 Unknown
C1 Case    .  3 40 M 80 White
C2 Control C1 3 38 M 73 White
D1 Case    .  4 47 M 50 Other
D2 Control D1 4 41 M 58 Other
D3 Control D1 4 50 F 49 Unknown
D4 Control D1 4 63 M 77 Other
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Aug 2023 10:05:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889619#M44103</guid>
      <dc:creator>Liamb</dc:creator>
      <dc:date>2023-08-17T10:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wilcoxon signed rank and Mc Nemar tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889636#M44104</link>
      <description>I don't understand, there is not Paired Wilcoxon test, Wilcoxon signed rank  is just the non-parameter version of pair ttest ,it is for continuous variable ,not category variable.&lt;BR /&gt;&lt;BR /&gt;But McNemar test is for the paired category variable(a.k.a  freq/count data).  &lt;BR /&gt;There are two different statistical method.&lt;BR /&gt;&lt;BR /&gt;And since it is about stat question,better post it at stat forum:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/bd-p/statistical_procedures" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/bd-p/statistical_procedures&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; maybe give you a help.&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Aug 2023 11:50:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Wilcoxon-signed-rank-and-Mc-Nemar-tests/m-p/889636#M44104</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-17T11:50:18Z</dc:date>
    </item>
  </channel>
</rss>

