<?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 ANOVA with Dunnett Correction, Pairwise p-values in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406645#M21173</link>
    <description>&lt;P&gt;I'm performing an ANOVA with Dunnett's t-test to simultaneously compare three groups against a control group. I get an overall F-statistic and p-value as well as confidence limits for each of the pairwise differences, but I really want p-values for each of these pairwise comparisons. I set ODS TRACE ON to see the data sets produced by the ANOVA procedure, but it doesn't look like any of them have pairwise p-values. Is there a way to get these? Here's my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output CLDiffs=week_13_da_stats;&lt;BR /&gt;ods output OverallANOVA=week_13_da_anova;&lt;BR /&gt;proc anova data=week_13_temp2;&lt;BR /&gt; class group;&lt;BR /&gt; model pg_DA_ug_Protein=group;&lt;BR /&gt; means group / dunnett("Control") nosort;&lt;BR /&gt; title "ANOVA: Week&amp;nbsp;13 DA";&lt;BR /&gt; run;&lt;BR /&gt; quit;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Oct 2017 17:11:52 GMT</pubDate>
    <dc:creator>acuffza</dc:creator>
    <dc:date>2017-10-23T17:11:52Z</dc:date>
    <item>
      <title>ANOVA with Dunnett Correction, Pairwise p-values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406645#M21173</link>
      <description>&lt;P&gt;I'm performing an ANOVA with Dunnett's t-test to simultaneously compare three groups against a control group. I get an overall F-statistic and p-value as well as confidence limits for each of the pairwise differences, but I really want p-values for each of these pairwise comparisons. I set ODS TRACE ON to see the data sets produced by the ANOVA procedure, but it doesn't look like any of them have pairwise p-values. Is there a way to get these? Here's my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output CLDiffs=week_13_da_stats;&lt;BR /&gt;ods output OverallANOVA=week_13_da_anova;&lt;BR /&gt;proc anova data=week_13_temp2;&lt;BR /&gt; class group;&lt;BR /&gt; model pg_DA_ug_Protein=group;&lt;BR /&gt; means group / dunnett("Control") nosort;&lt;BR /&gt; title "ANOVA: Week&amp;nbsp;13 DA";&lt;BR /&gt; run;&lt;BR /&gt; quit;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 17:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406645#M21173</guid>
      <dc:creator>acuffza</dc:creator>
      <dc:date>2017-10-23T17:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: ANOVA with Dunnett Correction, Pairwise p-values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406647#M21174</link>
      <description>&lt;P&gt;Try PROC MULTTEST?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 17:12:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406647#M21174</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-23T17:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: ANOVA with Dunnett Correction, Pairwise p-values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406681#M21176</link>
      <description>&lt;P&gt;If your data is balanced, or nearly balanced,&amp;nbsp;you can ask for lsmeans with option pdiff=control('CONTROL VALUE') in proc glm. If your data isn't balanced, you might be better with lsmeans anyway, depending on your inference needs. Example (adapted from SAS doc.):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title1 'Nitrogen Content of Red Clover Plants';
data Clover;
   input Strain $ Nitrogen @@;
   datalines;
3DOK1  19.4 3DOK1  32.6 3DOK1  27.0 3DOK1  32.1 3DOK1  33.0
3DOK5  17.7 3DOK5  24.8 3DOK5  27.9 3DOK5  25.2 3DOK5  24.3
3DOK4  17.0 3DOK4  19.4 3DOK4   9.1 3DOK4  11.9 3DOK4  15.8
3DOK7  20.7 3DOK7  21.0 3DOK7  20.5 3DOK7  18.8 3DOK7  18.6
3DOK13 14.3 3DOK13 14.4 3DOK13 11.8 3DOK13 11.6 3DOK13 14.2
COMPOS 17.3 COMPOS 19.4 COMPOS 19.1 COMPOS 16.9 COMPOS 20.8
;

proc glm data=Clover;
   class Strain;
   model Nitrogen = Strain;
   lsmeans Strain / pdiff=control('COMPOS');
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 18:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ANOVA-with-Dunnett-Correction-Pairwise-p-values/m-p/406681#M21176</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-10-23T18:25:21Z</dc:date>
    </item>
  </channel>
</rss>

