<?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: two sample t-test in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253540#M13382</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am using the following the following statements but the results (attached) look funny:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data econ1;&lt;BR /&gt; set econttest;&lt;BR /&gt; array x{*} zero one two three four;&lt;BR /&gt;length group $ 20;&lt;BR /&gt;do i=1 to dim(x);&lt;BR /&gt; group=vname(x{i});&lt;BR /&gt; value=x{i};&lt;BR /&gt; output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; proc glm data=Econ1;&lt;BR /&gt;class zero;&lt;BR /&gt;model one = zero;&lt;BR /&gt;lsmeans zero / pdiff;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;Could you please tell me how I can fix my code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
    <pubDate>Tue, 01 Mar 2016 18:02:56 GMT</pubDate>
    <dc:creator>niloo</dc:creator>
    <dc:date>2016-03-01T18:02:56Z</dc:date>
    <item>
      <title>two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253073#M13349</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 5 numerical variables and I am trying to run a t-test to figure out if the variables are equal.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/2087iBCEE36F238D7D5DA/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="ttest.png" title="ttest.png" /&gt;&lt;/P&gt;
&lt;DIV&gt;I tried to use the following t-test statement:&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;proc ttest data=econttest ;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; title "Two sample t-test Econ";&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; class zero;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;var one;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp;run;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;But I received the following error: ERROR: The CLASS variable has more than two levels.&lt;/DIV&gt;
&lt;DIV&gt;So, I used a proc GLM as follows:&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp;proc glm data=Econttest;&lt;/DIV&gt;
&lt;DIV&gt;class zero;&lt;/DIV&gt;
&lt;DIV&gt;model one = zero;&lt;/DIV&gt;
&lt;DIV&gt;lsmeans zero / pdiff;&lt;/DIV&gt;
&lt;DIV&gt;run;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Would you please let me know if I am using the right statements? If not which statement shoild I use?&lt;/DIV&gt;
&lt;DIV&gt;I have attached my output.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thank you,&lt;/DIV&gt;
&lt;DIV&gt;Niloo&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 28 Feb 2016 21:56:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253073#M13349</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-02-28T21:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253082#M13350</link>
      <description>&lt;P&gt;Have you changed your data format or maintained that format in SAS, ie one column per variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, then your data is not structured to facilitate the comparison in SAS, so your code and results are incorrect.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change your data so that you have a variable that identifies the Variable and another that holds the value.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc Transpose can be used to transform your data.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Feb 2016 22:39:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253082#M13350</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-28T22:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253095#M13351</link>
      <description>&lt;P&gt;Dear Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your response. I have not changes my data format. I did some research on proc transpose, is this how I can use it?&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG&gt;proc transpose data=econttest out=econttest1;
  by zero;
run;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I am trying to find out if variable zero=one, one=two, two=three, three=four.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Mon, 29 Feb 2016 00:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253095#M13351</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-02-29T00:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253098#M13352</link>
      <description>I don't know. Does your data look correct afterward? I doubt it, since zero doesn't appear to be a grouping variable. &lt;BR /&gt;&lt;BR /&gt;Google SAS UCLA WIDE TO LONG and you'll find examples of transposing using proc transpose or a data step. &lt;BR /&gt;&lt;BR /&gt;Also, if your doing mutiple t-tests its worth looking into PROC MULTTEST.</description>
      <pubDate>Mon, 29 Feb 2016 00:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253098#M13352</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-29T00:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253102#M13354</link>
      <description>&lt;P&gt;You need change your data structure ,like :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data temp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;set have;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;array x{*} zero one two three four;&lt;/P&gt;
&lt;P&gt;length group $ 20;&lt;/P&gt;
&lt;P&gt;do i=1 to dim(x);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;group=vname(x{i});&lt;/P&gt;
&lt;P&gt;&amp;nbsp;value=x{i};&lt;/P&gt;
&lt;P&gt;&amp;nbsp;output;&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Since your design is balanced , you can use proc anova to test */&lt;/P&gt;
&lt;P&gt;proc anova data=have;&lt;/P&gt;
&lt;P&gt;class group;&lt;BR /&gt; model value=group;&lt;BR /&gt; mean group/ scheffe;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Feb 2016 01:25:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253102#M13354</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-02-29T01:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253334#M13362</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;SPAN&gt;Xia,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your help. I used your codes and got the attached output. Does this table mean that non of the comparisons is significant?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/2098i568C15242EF08271/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Anova.png" title="Anova.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can I conclude that the none of the differences between the variables (zero, one, two, three, four) are equal?or all the H0:&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class="mrow"&gt;&lt;SPAN class="msubsup"&gt;&lt;SPAN class="mi"&gt;μ&lt;/SPAN&gt;&lt;SPAN class="texatom"&gt;&lt;SPAN class="mn"&gt;1&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="mo"&gt;=&lt;/SPAN&gt;&lt;SPAN class="msubsup"&gt;&lt;SPAN class="mi"&gt;μ&lt;/SPAN&gt;&lt;SPAN class="texatom"&gt;&lt;SPAN class="mn"&gt;2 are rejected?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/2099iC6FACD9762B675E8/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="anova1.png" title="anova1.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Thank you,&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 02:45:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253334#M13362</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-03-01T02:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253336#M13363</link>
      <description>&lt;P&gt;From the ANOVA the p-value is 0.019, less than 0.05, therefore you reject your null hypothesis. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, your pairwise comparisons show no difference, where the level of significance has been corrected for multiple testing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You didn't post your code so I can't say anything beyond this.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 03:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253336#M13363</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-01T03:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253337#M13364</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;P&gt;data econttest;&lt;BR /&gt;set work.econ; &lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data econ1;&lt;BR /&gt; set econttest;&lt;BR /&gt; array x{*} zero one two three four;&lt;BR /&gt;length group $ 20;&lt;BR /&gt;do i=1 to dim(x);&lt;BR /&gt; group=vname(x{i});&lt;BR /&gt; value=x{i};&lt;BR /&gt; output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc anova data=econ1;&lt;BR /&gt;class group;&lt;BR /&gt;model value=group;&lt;BR /&gt;mean group/ scheffe;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 03:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253337#M13364</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-03-01T03:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253338#M13365</link>
      <description>&lt;P&gt;Thanks, your code doesn't change my answer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The ANOVA shows a significant difference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The pairwise tests do not.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why -&amp;gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.graphpad.com/guides/prism/6/statistics/index.htm?stat_results_post_tests_2.htm" target="_blank"&gt;http://www.graphpad.com/guides/prism/6/statistics/index.htm?stat_results_post_tests_2.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 03:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253338#M13365</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-01T03:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253357#M13369</link>
      <description>&lt;P&gt;From your output :&lt;/P&gt;
&lt;P&gt;Number of Observations Read 805&lt;/P&gt;
&lt;P&gt;Number of Observations Used 444&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I doubted it is not balance design. So proc anova is not trusted.&lt;/P&gt;
&lt;P&gt;Switch into PROC GLM + mean or lsmean . as Reeza suggested.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 07:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253357#M13369</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-01T07:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253359#M13370</link>
      <description>&lt;P&gt;From the output ,&lt;/P&gt;
&lt;P&gt;Simultaneous 95% Confidence Limits &amp;nbsp; all contains zero . so it is hard to say which group is different another group.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 07:32:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253359#M13370</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-01T07:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253540#M13382</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am using the following the following statements but the results (attached) look funny:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data econ1;&lt;BR /&gt; set econttest;&lt;BR /&gt; array x{*} zero one two three four;&lt;BR /&gt;length group $ 20;&lt;BR /&gt;do i=1 to dim(x);&lt;BR /&gt; group=vname(x{i});&lt;BR /&gt; value=x{i};&lt;BR /&gt; output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; proc glm data=Econ1;&lt;BR /&gt;class zero;&lt;BR /&gt;model one = zero;&lt;BR /&gt;lsmeans zero / pdiff;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;Could you please tell me how I can fix my code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 18:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253540#M13382</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-03-01T18:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253576#M13383</link>
      <description>&lt;P&gt;You should not be using the Scheffe adjustment option. This is way too conservative. Change to Tukey, or see what happens without the option at all.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 19:55:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253576#M13383</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2016-03-01T19:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253581#M13385</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran the Proc GLM without the adjustment and the results still look funny(attached pdf is the output)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data econ;&lt;BR /&gt;set work.econ; &lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc glm data=Econ;&lt;BR /&gt;class zero;&lt;BR /&gt;model one = zero;&lt;BR /&gt;lsmeans zero / pdiff;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tahnks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 20:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253581#M13385</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-03-01T20:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253628#M13390</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I went through my data and I think I have to use a paired t-test since each row in my data is related to one company. I used the following statements:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc ttest data=econ sides=2 alpha=0.05 h0=0;&lt;BR /&gt; title "Paired sample t-test example";&lt;BR /&gt; paired zero * one;&lt;BR /&gt; run;&lt;/P&gt;
&lt;P&gt;My output does not look funny anymore. Could you please chekc out my output (attached)and let me know if I have got it right this time?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much,&lt;/P&gt;
&lt;P&gt;Niloo&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 23:00:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253628#M13390</guid>
      <dc:creator>niloo</dc:creator>
      <dc:date>2016-03-01T23:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: two sample t-test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253660#M13394</link>
      <description>&lt;P&gt;proc glm data=Econ;&lt;BR /&gt;class &lt;STRONG&gt;group&lt;/STRONG&gt;;&lt;BR /&gt;model &lt;STRONG&gt;value= group&lt;/STRONG&gt;;&lt;BR /&gt;lsmeans &lt;STRONG&gt;group&lt;/STRONG&gt;/&lt;SPAN&gt;pdiff&lt;/SPAN&gt; ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 01:59:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/two-sample-t-test/m-p/253660#M13394</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-02T01:59:07Z</dc:date>
    </item>
  </channel>
</rss>

