<?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: Multiple Comparison in SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538031#M148076</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226541"&gt;@JUMMY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a data of this nature.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  	input diet : $1. @;
			do i=1 to 7;
			input  cholesterol @;
		output;
	end;
drop i;
datalines;
A: 29 32 26 15 34 15 23
B: 11 30 34 13 27 24 21
C: 22 12 20 7 3 27 4
D: 16 21 13 6 0 9 25
E: 6 2 10 -3 8 1 -4
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I did run the Tukey Test using the code below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
  class diet;
  model cholesterol=diet;
  means diet / lines tukey;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And I got this output:&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="Tukey.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27383i6EDA324A6C219E09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tukey.png" alt="Tukey.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone explain what this output mean? What do the blue and red lines stand for?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The blue line crosses C D E, so these are not statistically different. The red line crosses A B C D, so these are not statisitically different. (Or to phrase it opposite, E is different than A and B with 95% confidence, but no other difference is statistically significant.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;And which diet is superior compared to the rest?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know. What in the data tells you that one diet is better than another diet?&lt;/P&gt;</description>
    <pubDate>Sun, 24 Feb 2019 00:01:56 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-02-24T00:01:56Z</dc:date>
    <item>
      <title>Multiple Comparison in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538028#M148075</link>
      <description>&lt;P&gt;I have a data of this nature.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  	input diet : $1. @;
			do i=1 to 7;
			input  cholesterol @;
		output;
	end;
drop i;
datalines;
A: 29 32 26 15 34 15 23
B: 11 30 34 13 27 24 21
C: 22 12 20 7 3 27 4
D: 16 21 13 6 0 9 25
E: 6 2 10 -3 8 1 -4
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I did run the Tukey Test using the code below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
  class diet;
  model cholesterol=diet;
  means diet / lines tukey;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And I got this output:&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="Tukey.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27383i6EDA324A6C219E09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tukey.png" alt="Tukey.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone explain what this output mean? What do the blue and red lines stand for? And which diet is superior compared to the rest?&lt;/P&gt;</description>
      <pubDate>Sat, 23 Feb 2019 22:55:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538028#M148075</guid>
      <dc:creator>JUMMY</dc:creator>
      <dc:date>2019-02-23T22:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Comparison in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538031#M148076</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226541"&gt;@JUMMY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a data of this nature.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  	input diet : $1. @;
			do i=1 to 7;
			input  cholesterol @;
		output;
	end;
drop i;
datalines;
A: 29 32 26 15 34 15 23
B: 11 30 34 13 27 24 21
C: 22 12 20 7 3 27 4
D: 16 21 13 6 0 9 25
E: 6 2 10 -3 8 1 -4
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I did run the Tukey Test using the code below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
  class diet;
  model cholesterol=diet;
  means diet / lines tukey;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And I got this output:&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="Tukey.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27383i6EDA324A6C219E09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tukey.png" alt="Tukey.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone explain what this output mean? What do the blue and red lines stand for?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The blue line crosses C D E, so these are not statistically different. The red line crosses A B C D, so these are not statisitically different. (Or to phrase it opposite, E is different than A and B with 95% confidence, but no other difference is statistically significant.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;And which diet is superior compared to the rest?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know. What in the data tells you that one diet is better than another diet?&lt;/P&gt;</description>
      <pubDate>Sun, 24 Feb 2019 00:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538031#M148076</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-02-24T00:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Comparison in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538040#M148080</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;, what of a case where there are three lines involved? What does the blue, red and green lines means in the diagram below?&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="Duncan.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27388i3E95027BE490EF8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Duncan.png" alt="Duncan.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Feb 2019 00:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538040#M148080</guid>
      <dc:creator>JUMMY</dc:creator>
      <dc:date>2019-02-24T00:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Comparison in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538072#M148090</link>
      <description>&lt;P&gt;These lines are interpreted the same way as two lines.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Feb 2019 13:14:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-Comparison-in-SAS/m-p/538072#M148090</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-02-24T13:14:14Z</dc:date>
    </item>
  </channel>
</rss>

