<?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: post-hoc test for Kruskal-Wallis-Test in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525221#M4906</link>
    <description>&lt;P&gt;Proc multtest is exactly for that purpose. Check the INPVALUES= option.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Jan 2019 20:52:42 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-01-07T20:52:42Z</dc:date>
    <item>
      <title>post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525211#M4902</link>
      <description>&lt;P&gt;Dear Sir or Madame,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to perform a post-hoch test for the Kruskal-Wallis test. I have already written my code for this test and it showed differences between the groups. So now, I red, that you can do a Bonferroni-post-hoc test. However, I cannot find a procedure for that. Does anybody know how to do it? Or can anybody show my another post-hoc test for my problem?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the used code for the Kruskal-Wallis test. Mabey it’s possible to extend it?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC NPAR1WAY DATA = Statistik WILCOXON;
CLASS Gruppe; 
EXACT; 
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I am running SAS version 9.4. on Windows.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate any help. Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 20:26:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525211#M4902</guid>
      <dc:creator>AndreaSch</dc:creator>
      <dc:date>2019-01-07T20:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525220#M4905</link>
      <description>&lt;P&gt;PROC GLM can do Bonferroni t-tests, using the MEANS statement and the BON option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC MULTTEST will perform the post-hoc adjustments for Bonferroni (and other) tests.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not aware of a non-parametric way to do this.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 20:50:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525220#M4905</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-07T20:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525221#M4906</link>
      <description>&lt;P&gt;Proc multtest is exactly for that purpose. Check the INPVALUES= option.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 20:52:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525221#M4906</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-01-07T20:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525246#M4921</link>
      <description>&lt;P&gt;Thanks both to you for your answers. I tried your advice. But I still have an error and I don't know how to solve the problem. My code is below. Besides I wrote something about raw p-Values. Can' I just use my measuring results? Do I have to compute new ones?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA Statistik;
INPUT Gruppe Raw_P @@; 
CARDS;
1	1320.527281	1	1294.800111	1	1242.468356
1.5	1211.42937	1.5	1418.558864	1.5	1129.583849
2	725.241616	2	1436.191316	2	1216.12421
2.5	1251.782715	2.5	710.0275351	2.5	1251.788858
3	1230.328215	3	1384.634321	3	1300.866933
3.5	1396.716718	3.5	1457.118658	3.5	1426.917688
4	1300.747017	4	730.510824	4	1236.251115
5	1404.1575	5	1354.503454	5	1330.99349
10	1476.694468	10	1416.509109	10	1380.101564
15	1401.714976	15	1364.866794	15	1408.147304
20	1148.021385	20	1239.254325	20	1239.254325
25	1217.440692	25	1193.010811	25	1112.880134
RUN;
PROC MULTTEST INPVALUES=Statistik bon;
RUN; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 21:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525246#M4921</guid>
      <dc:creator>AndreaSch</dc:creator>
      <dc:date>2019-01-07T21:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525275#M4927</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/253334"&gt;@AndreaSch&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks both to you for your answers. I tried your advice. But I still have an error and I don't know how to solve the problem. My code is below. Besides I wrote something about raw p-Values. Can' I just use my measuring results? Do I have to compute new ones?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't think p-values are allowed to be greater than 1 since they are probabilities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This runs though I make no claim for appropriate values for the p-values.&lt;/P&gt;
&lt;PRE&gt;DATA work.Statistik;
INPUT Gruppe Raw_P @@;
Raw_P = Raw_P/10000; 
CARDS;
1	1320.527281	1	1294.800111	1	1242.468356
1.5	1211.42937	1.5	1418.558864	1.5	1129.583849
2	725.241616	2	1436.191316	2	1216.12421
2.5	1251.782715	2.5	710.0275351	2.5	1251.788858
3	1230.328215	3	1384.634321	3	1300.866933
3.5	1396.716718	3.5	1457.118658	3.5	1426.917688
4	1300.747017	4	730.510824	4	1236.251115
5	1404.1575	5	1354.503454	5	1330.99349
10	1476.694468	10	1416.509109	10	1380.101564
15	1401.714976	15	1364.866794	15	1408.147304
20	1148.021385	20	1239.254325	20	1239.254325
25	1217.440692	25	1193.010811	25	1112.880134
RUN;
PROC MULTTEST INPVALUES=work.Statistik bon;
RUN; 
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 22:59:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525275#M4927</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-07T22:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: post-hoc test for Kruskal-Wallis-Test</title>
      <link>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525491#M4981</link>
      <description>&lt;P&gt;Thank you very much. Now my code is running. However, how can I interpret the result according to the post hoc Kurskal-Wallis test I want to perform? Now I get raw p-values and Bonferroni p-values. Every Bonferroni value is 1.0000.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 134px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26101i6ACE2F8BE45FE88C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Jan 2019 16:52:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/post-hoc-test-for-Kruskal-Wallis-Test/m-p/525491#M4981</guid>
      <dc:creator>AndreaSch</dc:creator>
      <dc:date>2019-01-08T16:52:02Z</dc:date>
    </item>
  </channel>
</rss>

