<?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: 95% CI (Confidence Interval) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224903#M11876</link>
    <description>Rick_SAS colud pleaae help me in this? I need the answer</description>
    <pubDate>Thu, 10 Sep 2015 05:46:47 GMT</pubDate>
    <dc:creator>afgdurrani0</dc:creator>
    <dc:date>2015-09-10T05:46:47Z</dc:date>
    <item>
      <title>95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224438#M11852</link>
      <description>&lt;DIV&gt;Hello&amp;nbsp;&lt;/DIV&gt;&lt;P class=""&gt;I &amp;nbsp;have need the last modification in my proc programming that can also estimate the&amp;nbsp;95% CI (Confidence Interval), though my proc programming estimate 95% CL but I need&amp;nbsp;95% CI (Confidence Interval).&lt;/P&gt;&lt;DIV class="signature"&gt;&lt;DIV class=""&gt;&lt;DIV class="yiv8350986191"&gt;&lt;SPAN&gt;Best regards,&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data exp;&lt;BR /&gt;set geumar2;&lt;BR /&gt;if expno=1;&lt;BR /&gt;run;&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc nlin data=exp method=marquardt;&lt;BR /&gt;parms B=0.5 R=0.1;&lt;BR /&gt;delta=0.000001;&lt;/P&gt;&lt;P&gt;s=sow**(1-B)-R*(1-B)*time;&lt;BR /&gt;if s&amp;gt;0 then stx=s**(1/(1-B));&lt;BR /&gt;else stx=0;&lt;/P&gt;&lt;P&gt;model stw=stx;&lt;/P&gt;&lt;P&gt;sb=(sow**(1-B+delta)-R*(1-B+delta)*time);&lt;BR /&gt;if sb&amp;gt;0 then sdb=(stx-sb**(1/(1-B+delta)))/delta;&lt;BR /&gt;else sdb=0;&lt;BR /&gt;der.B=sdb;&lt;/P&gt;&lt;P&gt;sr=(sow**(1-B)-(R-delta)*(1-B)*time);&lt;BR /&gt;if sr&amp;gt;0 then sdr=(stx-sr**(1/(1-B)))/delta;&lt;BR /&gt;else sdr=0;&lt;BR /&gt;der.R=sdr;&lt;/P&gt;&lt;P&gt;output out=expp p=pstw r=stw_residual;&lt;BR /&gt;run;&lt;BR /&gt;proc summary data=expp;&lt;BR /&gt;var stw_residual stw;&lt;BR /&gt;output out=stats css(stw)=sstot uss(stw_residual)=ssres N=N;&lt;BR /&gt;run;&lt;BR /&gt;data expp;&lt;BR /&gt;set stats;&lt;BR /&gt;rsquared=1-(ssres/sstot);&lt;BR /&gt;adjrsquared = 1-(1-rsquared)*(N-1) / (N- 2 -1);&lt;BR /&gt;run;&lt;BR /&gt;proc print data=expp;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2015 16:23:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224438#M11852</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-08T16:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224443#M11853</link>
      <description>What's your formula for the 95% CI? Also, please post what you've tried.</description>
      <pubDate>Tue, 08 Sep 2015 16:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224443#M11853</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-09-08T16:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224849#M11872</link>
      <description>Dear Reeza&lt;BR /&gt;I try this one with my data info but no result &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;proc surveyselect data=cipop n=10 rep=1 out=ci1;&lt;BR /&gt;id pop1;&lt;BR /&gt;proc surveyselect data = cipop n=10 rep=1 out=ci2;&lt;BR /&gt;id pop2;&lt;BR /&gt;proc means data = ci1;&lt;BR /&gt;proc means data = ci2;&lt;BR /&gt;run;</description>
      <pubDate>Wed, 09 Sep 2015 21:01:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224849#M11872</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-09T21:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224887#M11875</link>
      <description>Dear Reeza&lt;BR /&gt;Are you there?</description>
      <pubDate>Thu, 10 Sep 2015 02:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224887#M11875</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T02:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224903#M11876</link>
      <description>Rick_SAS colud pleaae help me in this? I need the answer</description>
      <pubDate>Thu, 10 Sep 2015 05:46:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224903#M11876</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T05:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224905#M11878</link>
      <description>Cross link for this post:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Statistical-Procedures/95-CI-Confidence-Interval/m-p/224904#U224904" target="_blank"&gt;https://communities.sas.com/t5/SAS-Statistical-Procedures/95-CI-Confidence-Interval/m-p/224904#U224904&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I couldn't receive any notification via email from this post, that's why I made another post.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Sep 2015 06:07:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224905#M11878</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T06:07:17Z</dc:date>
    </item>
  </channel>
</rss>

