<?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 Why I am getting different Output Tables on using the same Proc ANOVA Code on different dataset? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Why-I-am-getting-different-Output-Tables-on-using-the-same-Proc/m-p/247806#M13055</link>
    <description>&lt;P&gt;I was&amp;nbsp;performing two-sample t-test&amp;nbsp;using PROC ANOVA and used the following generic code to generate the output:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC ANOVA DATA=data-set-name;
CLASS class-variable;
MODEL measurement-variable=class-variable;
MEANS class-variable / t;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For one data I got the following result:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1742i159492D9E6A77AC6/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Proc Anova Res1.jpg" title="Proc Anova Res1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On another dataset using the same code the result was different.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1743i8820269D877F7076/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Proc Anova Res2.jpg" title="Proc Anova Res2.jpg" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though I can understand both the output but I want to know that why the Output Table was different in both the cases.&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS Version used 9.1&lt;/P&gt;</description>
    <pubDate>Wed, 03 Feb 2016 17:47:36 GMT</pubDate>
    <dc:creator>jayantyad</dc:creator>
    <dc:date>2016-02-03T17:47:36Z</dc:date>
    <item>
      <title>Why I am getting different Output Tables on using the same Proc ANOVA Code on different dataset?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-I-am-getting-different-Output-Tables-on-using-the-same-Proc/m-p/247806#M13055</link>
      <description>&lt;P&gt;I was&amp;nbsp;performing two-sample t-test&amp;nbsp;using PROC ANOVA and used the following generic code to generate the output:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC ANOVA DATA=data-set-name;
CLASS class-variable;
MODEL measurement-variable=class-variable;
MEANS class-variable / t;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For one data I got the following result:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1742i159492D9E6A77AC6/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Proc Anova Res1.jpg" title="Proc Anova Res1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On another dataset using the same code the result was different.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1743i8820269D877F7076/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Proc Anova Res2.jpg" title="Proc Anova Res2.jpg" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though I can understand both the output but I want to know that why the Output Table was different in both the cases.&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS Version used 9.1&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 17:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-I-am-getting-different-Output-Tables-on-using-the-same-Proc/m-p/247806#M13055</guid>
      <dc:creator>jayantyad</dc:creator>
      <dc:date>2016-02-03T17:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Why I am getting different Output Tables on using the same Proc ANOVA Code on different dataset?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-I-am-getting-different-Output-Tables-on-using-the-same-Proc/m-p/247813#M13056</link>
      <description>&lt;P&gt;Look at the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_anova_syntax10.htm" target="_self"&gt;documentation for the MEANS &lt;/A&gt;statement. It says that the output can be displayed in two ways, which you can specify by using: the CLDIFF option or the LINES option. The doc goes on to say:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The CLDIFF option is the default for unequal cell sizes.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The LINES option is appropriate for equal cell sizes, for which it is the default. The LINES option is also the default if ...there are only two cells of unequal size.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like the first data set has unequal cell sizes, where the&amp;nbsp;second&amp;nbsp;data set has equal cell sizes.&amp;nbsp; You can use the CLDIFF option to force the second output to look like the first.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 18:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-I-am-getting-different-Output-Tables-on-using-the-same-Proc/m-p/247813#M13056</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-02-03T18:28:22Z</dc:date>
    </item>
  </channel>
</rss>

