<?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: How to calculate Confidence Interval for 10th percentile? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544426#M27238</link>
    <description>Please post the correct answer for future users and people who were trying to answer your question.</description>
    <pubDate>Wed, 20 Mar 2019 02:16:11 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-03-20T02:16:11Z</dc:date>
    <item>
      <title>How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543743#M27217</link>
      <description>Hello all,&lt;BR /&gt;Based on time-to-event ADaM dataset, I have to output CI for 10th, 25th and 50th percentiles. In PROC LIFETEST, we can easily get 25th &amp;amp; 50th, but not 10th.&lt;BR /&gt;Does anyone know how to calculate CI for 10th percentile manually?</description>
      <pubDate>Sat, 16 Mar 2019 16:14:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543743#M27217</guid>
      <dc:creator>Quyhuynh</dc:creator>
      <dc:date>2019-03-16T16:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543745#M27218</link>
      <description>&lt;P&gt;You can get that information from the OUTSURV data set. I believe you take the value just above the percentile you're looking for, since it's a step type curve. &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Mar 2019 17:12:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543745#M27218</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-16T17:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543786#M27219</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=sashelp.heart  cipctldf cipctlnormal ;
var weight;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Mar 2019 11:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543786#M27219</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-03-17T11:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543842#M27221</link>
      <description>&lt;P&gt;Note that if your data contains censored values you should be using a proc that will take that fact into account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc quantlife is a good choice:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data heart;
set sashelp.heart;
ageAtDeathCensored = ageAtDeath;
if missing(ageAtDeathCensored) then do;
    ageAtDeathCensored = AgeAtStart;
    censored = 1;
    end;
else censored = 0;
run;

proc quantlife data=heart method=na ;
model ageAtDeathCensored*censored(1) = / quantile=(0.1);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;                 Summary of the Number of Event and Censored Values

                                                         Percent
                       Total       Event    Censored    Censored

                        5209        1991        3218       61.78


                                 Parameter Estimates

                                     Standard    95% Confidence
Quantile  Parameter    DF  Estimate     Error        Limits        t Value  Pr &amp;gt; |t|

  0.1000  Intercept     1   57.7854    0.4854   56.8341   58.7367   119.06    &amp;lt;.0001
&lt;/PRE&gt;
&lt;P&gt;Note that proc quantlife can also handle regressors.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 22:04:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543842#M27221</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-03-17T22:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543854#M27223</link>
      <description>&lt;P&gt;I am sorry. I have written wrong request. Actually I need an estimated value and its lower and upper limit for 10th.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 01:18:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543854#M27223</guid>
      <dc:creator>Quyhuynh</dc:creator>
      <dc:date>2019-03-18T01:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543862#M27224</link>
      <description>&lt;P&gt;Above example shows how to get the 10th survival percentile estimate and confidence limits. You want to estimate something else?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 03:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543862#M27224</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-03-18T03:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543864#M27225</link>
      <description>&lt;P&gt;I mean the limit value at 10th percentile.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 04:37:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/543864#M27225</guid>
      <dc:creator>Quyhuynh</dc:creator>
      <dc:date>2019-03-18T04:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544144#M27232</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/249968"&gt;@Quyhuynh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I mean the limit value at 10th percentile.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did you try the QUANTLIFE approach? What values did you get and what are you expecting?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 02:21:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544144#M27232</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-19T02:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544258#M27233</link>
      <description>&lt;P&gt;I figured it out. Thank you all for your kind help.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 15:01:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544258#M27233</guid>
      <dc:creator>Quyhuynh</dc:creator>
      <dc:date>2019-03-19T15:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate Confidence Interval for 10th percentile?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544426#M27238</link>
      <description>Please post the correct answer for future users and people who were trying to answer your question.</description>
      <pubDate>Wed, 20 Mar 2019 02:16:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-Confidence-Interval-for-10th-percentile/m-p/544426#M27238</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-20T02:16:11Z</dc:date>
    </item>
  </channel>
</rss>

