<?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: How to do a Test of Homogeneity of Variance in SAS EG in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649883#M31186</link>
    <description>This was very helpful information, Ivm, especially the part about stacking the data and adding a variable to identify the group(s); I never thought about doing this!  &lt;BR /&gt;&lt;BR /&gt;Thank you!  &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;</description>
    <pubDate>Fri, 22 May 2020 12:23:36 GMT</pubDate>
    <dc:creator>davidvalentine</dc:creator>
    <dc:date>2020-05-22T12:23:36Z</dc:date>
    <item>
      <title>How to do a Test of Homogeneity of Variance in SAS EG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649707#M31176</link>
      <description>&lt;P&gt;Hello Beautiful People!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope all is well!&amp;nbsp; I am trying to see if the variances of my samples are the same (for brevity's sake I only included 6 data, but my data sets in question have hundreds of rows), but I am not sure which procedure to use in SAS EG 8.1.&amp;nbsp; Also, is there a way to do this using the "Tasks" feature in SAS EG?&amp;nbsp; The sample data are below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.DummySales;
infile datalines;
	input 
		Month monyy6.
		Sales: dollar10.2 SalesB: dollar10.2 SalesC: dollar10.2;
		format Month monyy. Sales dollar10.2 SalesB dollar10.2 SalesC dollar10.2;
;
datalines;
Jan-12  $6,300.28  $5,400.12  $6,002.77
Feb-12  $7,298.56  $7,919.22  $7,491.08
Mar-12  $5,098.79  $5,989.01  $5,488.23
Apr-12  $5,971.96  $5,622.71  $6,122.21
May-12  $5,585.79  $5,588.66  $5,771.39
Jun-12  $5,575.80  $4,923.47  $5,353.29
;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which procedure should I use to do this?&amp;nbsp; And can this procedure be done using "Tasks"? &amp;nbsp;I've seen PROC GLM in different blogs, but I fail to see why I would want to create a model with my data unless it outputs tests for whether my different samples have the same variance or not.&amp;nbsp; Any help is greatly appreciated; thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Valentine&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 21:04:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649707#M31176</guid>
      <dc:creator>davidvalentine</dc:creator>
      <dc:date>2020-05-21T21:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a Test of Homogeneity of Variance in SAS EG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649754#M31185</link>
      <description>&lt;P&gt;I don't know anything about Tasks in EG, so maybe someone else can answer. The most direct way really is to use PROC GLM. You would have to stack your data, adding a variable to identify the group, assuming you are trying to compare the variances of the three variables.&amp;nbsp; The HOVTEST option in GLM is easy to use (there are several sub-options). See:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glm_syntax15.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.glm.means_opt_hov"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glm_syntax15.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.glm.means_opt_hov&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;See example at:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glm_examples10.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glm_examples10.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding your concern about the need to fit a model: data analysis is almost always about fitting models, even when you don't realize it. Getting the mean and standard deviation for a single sample is equivalent to fitting a model of Y = mu + error.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 01:11:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649754#M31185</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2020-05-22T01:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a Test of Homogeneity of Variance in SAS EG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649883#M31186</link>
      <description>This was very helpful information, Ivm, especially the part about stacking the data and adding a variable to identify the group(s); I never thought about doing this!  &lt;BR /&gt;&lt;BR /&gt;Thank you!  &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;</description>
      <pubDate>Fri, 22 May 2020 12:23:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-do-a-Test-of-Homogeneity-of-Variance-in-SAS-EG/m-p/649883#M31186</guid>
      <dc:creator>davidvalentine</dc:creator>
      <dc:date>2020-05-22T12:23:36Z</dc:date>
    </item>
  </channel>
</rss>

