<?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: SS between groups in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645328#M30970</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323613"&gt;@Mathis1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this option:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc glm data=have;
	class VAR_1 VAR_2;
	model Y = VAR_1 VAR_2 / e3;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 05 May 2020 15:10:52 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-05-05T15:10:52Z</dc:date>
    <item>
      <title>SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645212#M30955</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm looking to get the SS between groups for each categorical variable of a model.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, I have :&lt;/P&gt;
&lt;P&gt;Data HAVE;&lt;BR /&gt;INPUT VAR_1 $ Var_2 $ Y $ ;&lt;BR /&gt;DATALINES;&lt;BR /&gt;0,50_A N 24,14&lt;BR /&gt;0,50_A N 30,47&lt;BR /&gt;0,50_B N 20,41&lt;BR /&gt;0,50_B N 17,6&lt;BR /&gt;0,50_B N 34,67&lt;BR /&gt;0,50_B N 25,29&lt;BR /&gt;0,50_B N 26,14&lt;BR /&gt;0,50_B N 22,89&lt;BR /&gt;0,50_B N 27,36&lt;BR /&gt;0,50_B O 41,85&lt;BR /&gt;0,50_B O 34,31&lt;BR /&gt;0,50_B O 22,82&lt;BR /&gt;0,50_B O 14,15&lt;BR /&gt;0,50_B O 20,87&lt;BR /&gt;0,50_B O 20,38&lt;BR /&gt;0,50_B O 20,33&lt;BR /&gt;0,76_0,80 O 20,3&lt;BR /&gt;0,76_0,80 O 42,98&lt;BR /&gt;0,81_0,86 O 23,61&lt;BR /&gt;0,9 O 24,91&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp; my model is Y = VAR_1 VAR_2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On Excel I managed to find the SS between groups for VAR_2 (which is 1,81) as the Proc ANOVA&amp;nbsp; outputed. Nevertheless, when doing the same calculus but for VAR_1, I get a SS of 88,82 when the Proc ANOVA outputs&amp;nbsp;872.3818586.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The formula I use is this one :&amp;nbsp;&lt;A href="https://arc.lib.montana.edu/book/statistics-with-r-textbook/meta/img/Equation2.5.jpeg" target="_blank"&gt;https://arc.lib.montana.edu/book/statistics-with-r-textbook/meta/img/Equation2.5.jpeg&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where J is the number of groups (2 for VAR_2 and 5 for VAR_1) and nj is the number of observations in each group.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My questions are : How can i get the SS between groups (i.e the 88,82 that I got with the formula) automatically with SAS for all the variables of my model ? Besides how is the Anova SS for each variable is calculated ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 09:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645212#M30955</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T09:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645219#M30957</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323613"&gt;@Mathis1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is what I get with PROC ANOVA and PROC GLM (88.8). Ho did you get&amp;nbsp;&lt;SPAN&gt;872.3818586? Could you please share the code you used?&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data HAVE;
INPUT VAR_1 $ Var_2 $ Y ;
DATALINES;
0,50_A N 24.14
0,50_A N 30.47
0,50_B N 20.41
0,50_B N 17.6
0,50_B N 34.67
0,50_B N 25.29
0,50_B N 26.14
0,50_B N 22.89
0,50_B N 27.36
0,50_B O 41.85
0,50_B O 34.31
0,50_B O 22.82
0,50_B O 14.15
0,50_B O 20.87
0,50_B O 20.38
0,50_B O 20.33
0,76_0,80 O 20.3
0,76_0,80 O 42.98
0,81_0,86 O 23.61
0,9 O 24.91
;
run;

proc glm data=have;
	class VAR_1 VAR_2;
	model Y = VAR_1 VAR_2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output (my apologies for the French display):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-05 à 11.47.00.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39062i497D4647548F5B1A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2020-05-05 à 11.47.00.png" alt="Capture d’écran 2020-05-05 à 11.47.00.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You get similar results with PROC ANOVA:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc anova data=have;
	class VAR_1 VAR_2;
	model Y = VAR_1 VAR_2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-05 à 11.48.35.png" style="width: 462px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39063i8B5ED7219DCAAA56/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2020-05-05 à 11.48.35.png" alt="Capture d’écran 2020-05-05 à 11.48.35.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 09:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645219#M30957</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-05T09:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645227#M30958</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;&amp;nbsp;and thank you very much for your reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, i didn't try running the proc anova on this table and i'm glad that it outputed those results. However I tried the proc anova on an other table with more variables but exactly the same groups for those 2 variables, and of course the same Y variable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find attached the table I'm talking about.&amp;nbsp; You will find the same VAR_1, VAR_2 and Y variables, but also extra variables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When executing :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc anova data = HAVE_2 outstat= ANOVA ;&lt;BR /&gt;class VAR_1 VAR_2;&lt;BR /&gt;model Y = VAR_1 VAR_2;&lt;BR /&gt;run;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I find the 872 i was mentionning ealier. I don't see why the presence of extra columns would change the results...&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 10:16:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645227#M30958</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T10:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645236#M30959</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323613"&gt;@Mathis1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have compared datalines and your SAS dataset.&lt;/P&gt;
&lt;P&gt;It seems that there are some discrepancies between group allocations for Y values.&lt;/P&gt;
&lt;P&gt;I think this is why you get different results.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-05-05 à 12.33.03.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39065iCEB550B09D001B10/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture d’écran 2020-05-05 à 12.33.03.png" alt="Capture d’écran 2020-05-05 à 12.33.03.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 10:40:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645236#M30959</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-05T10:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645237#M30960</link>
      <description>&lt;P&gt;PROC ANOVA should not be used here. It should only be used for cases where the data is balanced (equal numbers in each cell) or a one-way analysis of variance (which this is not). So I would ignore the PROC ANOVA results.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 10:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645237#M30960</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-05-05T10:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645239#M30962</link>
      <description>&lt;P&gt;Totally agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-&amp;gt; please see the warning message in the log when you run PROC ANOVA:&lt;/P&gt;
&lt;PRE&gt; WARNING: PROC ANOVA has determined that the number of observations in each cell is not equal. &lt;BR /&gt;PROC GLM may be more appropriate.&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 11:02:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645239#M30962</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-05T11:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645281#M30965</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;A class="trigger-hovercard" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097" target="_blank"&gt;ed_sas_member&lt;/A&gt;, this is where the problem came from !&lt;BR /&gt;&lt;BR /&gt;About proc Anova, this is the only way I know for getting the SS between groups. Is there any way to get this variance given by proc anova with the proc GLM and one of its option ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 13:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645281#M30965</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T13:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645295#M30966</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;&amp;nbsp;already showed you where the SS for groups is in the PROC GLM 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="SteveDenham_4-1588686300070.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39076i8180C4FD7BA9103B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SteveDenham_4-1588686300070.png" alt="SteveDenham_4-1588686300070.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The part in yellow is the sum of squares.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 13:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645295#M30966</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-05-05T13:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645325#M30969</link>
      <description>&lt;P&gt;This part is giving me the SS for groups for all the variable. The Anova gives me the SS between groups for each variable. I can't find those results in the proc glm.&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="Capture_ANOVA.PNG" style="width: 489px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39083i1305F263FE853E3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture_ANOVA.PNG" alt="Capture_ANOVA.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm talking about these SS, corresponding to the attached table in my earlier post (and where VAR_1 became CRM2 and VAR_2 became PetitRouleur, but it doesn't matter).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 15:11:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645325#M30969</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T15:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645328#M30970</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323613"&gt;@Mathis1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this option:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc glm data=have;
	class VAR_1 VAR_2;
	model Y = VAR_1 VAR_2 / e3;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 May 2020 15:10:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645328#M30970</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-05T15:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645331#M30971</link>
      <description>Hmmm it doesn't seem to get me the SS given by the ANOVA. It's not a big deal anyway, i can just run the ANOVA if looking to get those SS between groups... It was just in order to simplify my code with an option on the proc glm.</description>
      <pubDate>Tue, 05 May 2020 15:15:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645331#M30971</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T15:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645332#M30972</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/323613"&gt;@Mathis1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Head here&amp;nbsp;&lt;A href="https://support.sas.com/documentation/onlinedoc/stat/141/glm.pdf" target="_self"&gt;https://support.sas.com/documentation/onlinedoc/stat/141/glm.pdf&lt;/A&gt;&amp;nbsp;.&amp;nbsp; Drop down to the Getting Started section. the second page will give you some example outputs.&amp;nbsp; There are Type I and Type III sums of squares for each variable.&amp;nbsp; You will likely want the Type III.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 15:17:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645332#M30972</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-05-05T15:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645338#M30974</link>
      <description>&lt;P&gt;Remember that you have unbalanced data.&amp;nbsp; Running PROC ANOVA on unbalanced data will give the following in the log window (using interactive SAS):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000"&gt;WARNING: PROC ANOVA has determined that the number of observations in each cell is not equal.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#008000"&gt;PROC GLM may be more appropriate&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This warning in the log is telling you that the SS presented by PROC ANOVA are &lt;FONT color="#FF0000"&gt;&lt;U&gt;&lt;STRONG&gt;NOT&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt; accurate for your data. Please stop assuming that PROC ANOVA is a gold standard.&amp;nbsp; For unbalanced data, if you want SS, use the Type III sums of squares from PROC GLM&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 15:35:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645338#M30974</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-05-05T15:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: SS between groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645340#M30975</link>
      <description>Hello and thank you for your reply.&lt;BR /&gt;I'm aware about Type I and III SS in the PROC GLM and about the Warning message thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; . I was just ingenuously asking myself if there was any way to get the same SS outputed by Proc ANOVA with the proc GLM, although (and I completely agree with you) they may be totally irrelevant. I'm not assuming that PROC ANOVA is a gold standard. This morning I was not even sure how the SS outputed by this proc were computed. That's how much I'm not assuming anything about proc ANOVA &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;But thank you for helping though...</description>
      <pubDate>Tue, 05 May 2020 15:44:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SS-between-groups/m-p/645340#M30975</guid>
      <dc:creator>Mathis1</dc:creator>
      <dc:date>2020-05-05T15:44:12Z</dc:date>
    </item>
  </channel>
</rss>

