<?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 How to get Confidence Intervals in Proc ANOVA in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805637#M39630</link>
    <description>&lt;P&gt;Here is the code, what do I need to add to get CI in the output&lt;/P&gt;</description>
    <pubDate>Sat, 02 Apr 2022 19:02:39 GMT</pubDate>
    <dc:creator>Sassybanana</dc:creator>
    <dc:date>2022-04-02T19:02:39Z</dc:date>
    <item>
      <title>How to get Confidence Intervals in Proc ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805637#M39630</link>
      <description>&lt;P&gt;Here is the code, what do I need to add to get CI in the output&lt;/P&gt;</description>
      <pubDate>Sat, 02 Apr 2022 19:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805637#M39630</guid>
      <dc:creator>Sassybanana</dc:creator>
      <dc:date>2022-04-02T19:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Confidence Intervals in Proc ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805640#M39631</link>
      <description>&lt;P&gt;Confidence intervals for what?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want confidence intervals for the mean of a level, you can use the MEANS statement with the CLM option. &lt;A href="https://documentation.sas.com/doc/en/pgmmvacdc/9.4/statug/statug_anova_syntax10.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmmvacdc/9.4/statug/statug_anova_syntax10.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: Many people here will not download Microsoft Office documents because they can be a security threat. Please post your code as plain text inside the box that appears here when you click on the "little running man" icon.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Apr 2022 21:18:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805640#M39631</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-04-02T21:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Confidence Intervals in Proc ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805853#M39637</link>
      <description>&lt;P&gt;To get confidence limits for the group means, use the CLM option on the MEANS statement. To get confidence limits for the regression parameters, switch to PROC GLM and use the SOLUTION and CLPARM options, as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc anova data=sashelp.class;
class sex;
model height = sex;
means sex / clm;   /* CL for group means */
run;

proc glm data=sashelp.class;
class sex;
model height = sex / solution clparm;  /* CL for regression parameters */
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Apr 2022 13:48:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-get-Confidence-Intervals-in-Proc-ANOVA/m-p/805853#M39637</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-04-04T13:48:29Z</dc:date>
    </item>
  </channel>
</rss>

