<?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: PROC ANOVA not showing means &amp;amp; pairwise comparisons in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349509#M63754</link>
    <description>&lt;P&gt;Sorry, my mistake for not specifiying in my original post. I tried using both the LSD and BON methods (this was for a class homework assignment, these are the two the professor suggested we use).&amp;nbsp; Neither resulted in pairwise comparisons showing.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Apr 2017 16:26:10 GMT</pubDate>
    <dc:creator>katb</dc:creator>
    <dc:date>2017-04-12T16:26:10Z</dc:date>
    <item>
      <title>PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349216#M63738</link>
      <description>&lt;P&gt;Hi all! I'm trying to run an ANOVA that models a continuous variable based on a categorical variable. For some reason, the SAS output is not including the means &amp;amp; pairwise comparisons. I know my code is right; I've run it on SAS on a different computer and it gives me all the proper output. It just doesn't seem to be working on my particular machine. Am I missing something? For reference, here's my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC ANOVA DATA = work.file3;
	CLASS DMDEDUC; 
	MODEL CFDRIGHT = DMDEDUC;
	MEANS DMDEDUC / LSD;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 18:26:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349216#M63738</guid>
      <dc:creator>katb</dc:creator>
      <dc:date>2017-04-11T18:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349219#M63739</link>
      <description>&lt;P&gt;Can you show us the SASLOG? Can you show us the output? Can you show us (part of) the data used?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 18:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349219#M63739</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-04-11T18:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349262#M63741</link>
      <description>&lt;P&gt;How did you move the data to the other computer? Am wondering if how you did that may have actually changed any values.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 20:36:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349262#M63741</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-04-11T20:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349447#M63751</link>
      <description>&lt;PRE&gt;
Specify a ANOVA method.



PROC ANOVA DATA = sashelp.class;
	CLASS sex; 
	MODEL weight = sex;
	MEANS sex / TUKEY;
quit;

&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Apr 2017 13:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349447#M63751</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-04-12T13:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349509#M63754</link>
      <description>&lt;P&gt;Sorry, my mistake for not specifiying in my original post. I tried using both the LSD and BON methods (this was for a class homework assignment, these are the two the professor suggested we use).&amp;nbsp; Neither resulted in pairwise comparisons showing.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 16:26:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349509#M63754</guid>
      <dc:creator>katb</dc:creator>
      <dc:date>2017-04-12T16:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349513#M63755</link>
      <description>This was for a class assignment, I sent my code to a fellow student who had downloaded an identical data set and it ran correctly on her computer.</description>
      <pubDate>Wed, 12 Apr 2017 16:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349513#M63755</guid>
      <dc:creator>katb</dc:creator>
      <dc:date>2017-04-12T16:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349518#M63756</link>
      <description>&lt;P&gt;&lt;A href="http://imgur.com/a/0myhV" target="_self"&gt;Here&lt;/A&gt; are screen shots of the SASLOG and all the output. The data was compiled from pieces of the NHANES data set, unfortunately I can't share the dataset since it was compiled by my professor and not myself (this is a class assignment).&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 16:35:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349518#M63756</guid>
      <dc:creator>katb</dc:creator>
      <dc:date>2017-04-12T16:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC ANOVA not showing means &amp; pairwise comparisons</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349757#M63769</link>
      <description>&lt;P&gt;Hey, I saw this in the output.&lt;/P&gt;
&lt;P&gt;Is that what you are looking for ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;ARTICLE&gt;&lt;/ARTICLE&gt;
&lt;ARTICLE id="IDX8"&gt;
&lt;TABLE class="table"&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="4" scope="colgroup"&gt;Means with the same letter are not significantly different.&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="c b header" scope="col"&gt;t&amp;nbsp;Grouping&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Mean&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;N&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Sex&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="r data"&gt;108.950&lt;/TD&gt;
&lt;TD class="r data"&gt;10&lt;/TD&gt;
&lt;TD class="data"&gt;M&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;A&lt;/TD&gt;
&lt;TD class="r data"&gt;90.111&lt;/TD&gt;
&lt;TD class="r data"&gt;9&lt;/TD&gt;
&lt;TD class="data"&gt;F&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;</description>
      <pubDate>Thu, 13 Apr 2017 13:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-ANOVA-not-showing-means-amp-pairwise-comparisons/m-p/349757#M63769</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-04-13T13:30:40Z</dc:date>
    </item>
  </channel>
</rss>

