<?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: Comparing means of 3 different groups in a prospective data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/459016#M116529</link>
    <description>&lt;P&gt;Thank you - I agreed.&lt;/P&gt;
&lt;P&gt;Beside the ANOVA, is there any test.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 May 2018 15:52:16 GMT</pubDate>
    <dc:creator>PhanS</dc:creator>
    <dc:date>2018-05-01T15:52:16Z</dc:date>
    <item>
      <title>Comparing means of 3 different groups in a prospective data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/458998#M116524</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I appreciate anyone can help - I am looking for an appropriate test to "compare means of 3 different groups in a prospective data"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data wide;&amp;nbsp;&lt;BR /&gt;input id hand06 hand07 hand08 hand09;&lt;BR /&gt;cards;&lt;BR /&gt;1 40 32 . 35&lt;BR /&gt;2 26 34 . 39&lt;BR /&gt;3 39 41 . 47 &lt;BR /&gt;4 36 50 . 41&lt;BR /&gt;5 42 38 . 39&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc means data=wide fw=8;&lt;BR /&gt;var hand06 - hand09;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data long; set wide;&lt;BR /&gt;year=06;&lt;BR /&gt;hand_=hand06;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;year=07;&lt;BR /&gt;hand_=hand07;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;year=09;&lt;BR /&gt;hand_=hand09;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;drop hand06-hand09;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=long;&lt;BR /&gt;class year;&lt;BR /&gt;var hand_;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 15:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/458998#M116524</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2018-05-01T15:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing means of 3 different groups in a prospective data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/459006#M116527</link>
      <description>&lt;P&gt;ANOVA is a starting point. Make sure to visually inspect the data and do some histograms.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31493"&gt;@PhanS&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I appreciate anyone can help - I am looking for an appropriate test to "compare means of 3 different groups in a prospective data"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data wide;&amp;nbsp;&lt;BR /&gt;input id hand06 hand07 hand08 hand09;&lt;BR /&gt;cards;&lt;BR /&gt;1 40 32 . 35&lt;BR /&gt;2 26 34 . 39&lt;BR /&gt;3 39 41 . 47 &lt;BR /&gt;4 36 50 . 41&lt;BR /&gt;5 42 38 . 39&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc means data=wide fw=8;&lt;BR /&gt;var hand06 - hand09;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data long; set wide;&lt;BR /&gt;year=06;&lt;BR /&gt;hand_=hand06;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;year=07;&lt;BR /&gt;hand_=hand07;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;year=09;&lt;BR /&gt;hand_=hand09;&lt;BR /&gt;output;&lt;/P&gt;
&lt;P&gt;drop hand06-hand09;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=long;&lt;BR /&gt;class year;&lt;BR /&gt;var hand_;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 15:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/459006#M116527</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-01T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing means of 3 different groups in a prospective data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/459016#M116529</link>
      <description>&lt;P&gt;Thank you - I agreed.&lt;/P&gt;
&lt;P&gt;Beside the ANOVA, is there any test.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2018 15:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Comparing-means-of-3-different-groups-in-a-prospective-data/m-p/459016#M116529</guid>
      <dc:creator>PhanS</dc:creator>
      <dc:date>2018-05-01T15:52:16Z</dc:date>
    </item>
  </channel>
</rss>

