<?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: Testing homogeneity for Two-way ANOVA in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/351999#M18458</link>
    <description>&lt;P&gt;Can you try LSMEANS statement ?&lt;/P&gt;
&lt;P&gt;And your design is balanced or not balanced ?&lt;/P&gt;</description>
    <pubDate>Fri, 21 Apr 2017 03:27:53 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2017-04-21T03:27:53Z</dc:date>
    <item>
      <title>Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/351880#M18457</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to test homogeneity for a two way ANOVA, (linearity assumption was alreay verified), but It doesn't work,&amp;nbsp;I read that Levene's test is only for one way ANOVA&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC GLM DATA=clus_ConHR;&lt;BR /&gt;CLASS Cluster agegroup;&lt;BR /&gt;MODEL vitesse_trt = &lt;SPAN&gt;Cluster agegroup&amp;nbsp;&lt;/SPAN&gt;Cluster*agegroup;&lt;BR /&gt;means Cluster*agegroup/ HOVTEST=levene(type=ABS);&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How should I test homogeneity using SAS in this model? Should I construct a plot with the residuals?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 19:37:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/351880#M18457</guid>
      <dc:creator>rossanaperedo</dc:creator>
      <dc:date>2017-04-20T19:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/351999#M18458</link>
      <description>&lt;P&gt;Can you try LSMEANS statement ?&lt;/P&gt;
&lt;P&gt;And your design is balanced or not balanced ?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 03:27:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/351999#M18458</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-04-21T03:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352203#M18459</link>
      <description>&lt;P&gt;Not clear if you want a statistical test or a graph that enables you to visually check distributions. &amp;nbsp;For a graph, try using the EFFECTPLOT statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod DATA=clus_ConHR;
CLASS Cluster agegroup;
MODEL vitesse_trt = Cluster agegroup&amp;nbsp;Cluster*agegroup
effectplot box / cluster;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For details and a discussion, see &lt;A href="http://blogs.sas.com/content/iml/2017/04/24/two-way-anova-viz.html" target="_self"&gt;"Visualize an ANOVA with two-way interactions."&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 15:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352203#M18459</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-04-24T15:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352889#M18487</link>
      <description>&lt;P&gt;Lsmeans didn't gave me the results that I need to test homogeneity. Thank you anyway.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 14:48:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352889#M18487</guid>
      <dc:creator>rossanaperedo</dc:creator>
      <dc:date>2017-04-24T14:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352891#M18488</link>
      <description>&lt;P&gt;I was trying to test homogeneity of variance by looking at the distributions. I found this solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC glm DATA=clus_ConHR;&lt;BR /&gt;CLASS Cluster agegroup;&lt;BR /&gt;MODEL fct_executive = Cluster agegroup Cluster*agegroup;&lt;BR /&gt;output out = residus p=predit rstudent=rstudent;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;Proc gplot data = residus;&lt;BR /&gt;plot rstudent* (predit);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 14:50:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/352891#M18488</guid>
      <dc:creator>rossanaperedo</dc:creator>
      <dc:date>2017-04-24T14:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/363215#M19090</link>
      <description>&lt;P&gt;Although the graphics (expecially boxplots) are useful in assessing homogeniety of variance across groups in a 2-way ANOVA, I am looking for a statistical test that can be applied ?&amp;nbsp; Most of what I have seen only applies to 1-way ANOVA ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 20:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/363215#M19090</guid>
      <dc:creator>Hydro1</dc:creator>
      <dc:date>2017-05-31T20:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Testing homogeneity for Two-way ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/363265#M19091</link>
      <description>&lt;P&gt;For a discussion of two-way tests of homogeneity of variance, see the examples &amp;nbsp;and discussion at&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.stat.wmich.edu/wang/664/egs/SASsoybean.html" target="_blank"&gt;http://www.stat.wmich.edu/wang/664/egs/SASsoybean.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 23:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Testing-homogeneity-for-Two-way-ANOVA/m-p/363265#M19091</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-05-31T23:04:03Z</dc:date>
    </item>
  </channel>
</rss>

