<?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: Subtracting the confidence interval in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621817#M19663</link>
    <description>&lt;PRE&gt;PROC GLM DATA = A3_3;
	CLASS racegp;
	MODEL lbmi = racegp sex age/SOLUTION CLPARM;
	LSMEANS racegp/PDIFF STDERR CL;
	FORMAT racegp racefmt.;
	OUTPUT  OUT = A3_4 LCL=lcl UCL=ucl lsmean= lsm; 
RUN;&lt;/PRE&gt;
&lt;P&gt;I tried above code but the outcome is not right. ANYONE CAN help please?&lt;/P&gt;</description>
    <pubDate>Sun, 02 Feb 2020 23:18:10 GMT</pubDate>
    <dc:creator>kngu022</dc:creator>
    <dc:date>2020-02-02T23:18:10Z</dc:date>
    <item>
      <title>Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621816#M19662</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-02-03 at 12.03.55 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35808i9E5F094E5C2A7396/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-02-03 at 12.03.55 PM.png" alt="Screen Shot 2020-02-03 at 12.03.55 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like to subtract the 95% confidence interval out. Could anyone suggest me the way to do it please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2020 23:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621816#M19662</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-02T23:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621817#M19663</link>
      <description>&lt;PRE&gt;PROC GLM DATA = A3_3;
	CLASS racegp;
	MODEL lbmi = racegp sex age/SOLUTION CLPARM;
	LSMEANS racegp/PDIFF STDERR CL;
	FORMAT racegp racefmt.;
	OUTPUT  OUT = A3_4 LCL=lcl UCL=ucl lsmean= lsm; 
RUN;&lt;/PRE&gt;
&lt;P&gt;I tried above code but the outcome is not right. ANYONE CAN help please?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2020 23:18:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621817#M19663</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-02T23:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621837#M19666</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I would like to subtract the 95% confidence interval out.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Do you mean, remove it from the output (i.e. show the table without the confidence interval showing)?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please elaborate.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 02:09:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621837#M19666</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2020-02-03T02:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621849#M19668</link>
      <description>&lt;P&gt;Use an ODS output dataset, and do whatever calculation is needed. Add the statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output parameterestimates=pe;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to your analysis. The parameter estimates data will be written to dataset pe.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 03:55:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621849#M19668</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-02-03T03:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621875#M19674</link>
      <description>&lt;P&gt;Hi Unison,&lt;/P&gt;
&lt;P&gt;I mean I want to use the confidence interval only for further analysis. Could you tell me what I should do next?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 06:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621875#M19674</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-03T06:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621911#M19677</link>
      <description>&lt;P&gt;Can you give us a longer and more detailed explanation of what you want, instead of these very brief descriptions that can mean a number of different things?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 12:13:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621911#M19677</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-03T12:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Subtracting the confidence interval</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621970#M19693</link>
      <description>&lt;P&gt;Here's some instructions and explanations on how to capture output that is shown to a data set. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to capture the data into a new data set. Instructions above are available on how to get that data into a data set. Depending on what you're trying to do next, there may be other, better ways but we don't know what you're trying to do overall.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 16:04:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Subtracting-the-confidence-interval/m-p/621970#M19693</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-03T16:04:31Z</dc:date>
    </item>
  </channel>
</rss>

