<?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: Pairwise analysis following Kruskal Wallis testing in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811193#M39968</link>
    <description>&lt;P&gt;One way to do a pairwise comparison of means following Kruskal Wallis is called "Dunn's Test". Code for this is here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/Dunn-s-Test/m-p/89558#M4394" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/Statistical-Procedures/Dunn-s-Test/m-p/89558#M4394&lt;/A&gt;&amp;nbsp;As stated at that link, there are many macros for this that can be found via your favorite internet search engine.&lt;/P&gt;</description>
    <pubDate>Tue, 03 May 2022 11:57:02 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-05-03T11:57:02Z</dc:date>
    <item>
      <title>Pairwise analysis following Kruskal Wallis testing</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811177#M39963</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dataset that is seperated into 4 groups (disease1, disease2, disease3, disease4). For each individual, I have several variables to test (biochemical variables such as creatinine, urea...).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I coded a npar1way procedure to perform a Kruskal Wallis test to determine if there was a statistical difference for a given variable between the 4 groups:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc npar1way 
	data=data_descriptive_workingfile wilcoxon;
	var  creatinine ;
	class group;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know want to compare the data within the classes : perform a Mann Whitney U Test that compares creatinine between Disease1 and Disease2, Disease 1 and Disease3, etc. I do not want to perform a&amp;nbsp;Steel-Dwass-Critchlow-Fligner&amp;nbsp;test because I would like to use another type of post-hoc analysis&lt;/P&gt;&lt;P&gt;Is there any way to code that ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running on Sas OnDemand for Academics&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks in advance for your help,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maxime&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 09:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811177#M39963</guid>
      <dc:creator>MaximeKurtz</dc:creator>
      <dc:date>2022-05-03T09:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pairwise analysis following Kruskal Wallis testing</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811191#M39967</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any particular reason you are doing a non-parametric analysis for this research question?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the&amp;nbsp;Statistical Assumptions for Using PROC GLM (&lt;A href="https://go.documentation.sas.com/doc/en/statug/15.2/statug_glm_details01.htm" target="_blank"&gt;&amp;nbsp;https://go.documentation.sas.com/doc/en/statug/15.2/statug_glm_details01.htm&lt;/A&gt; ) are met, I would do this ANOVA with PROC GLM.&lt;BR /&gt;&lt;BR /&gt;Then use LSMEANS statement for &lt;SPAN&gt;performing multiple comparisons.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 10:46:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811191#M39967</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-05-03T10:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pairwise analysis following Kruskal Wallis testing</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811193#M39968</link>
      <description>&lt;P&gt;One way to do a pairwise comparison of means following Kruskal Wallis is called "Dunn's Test". Code for this is here:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/Dunn-s-Test/m-p/89558#M4394" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/Statistical-Procedures/Dunn-s-Test/m-p/89558#M4394&lt;/A&gt;&amp;nbsp;As stated at that link, there are many macros for this that can be found via your favorite internet search engine.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2022 11:57:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pairwise-analysis-following-Kruskal-Wallis-testing/m-p/811193#M39968</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-03T11:57:02Z</dc:date>
    </item>
  </channel>
</rss>

