<?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: SAS PROGRAMMING in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753431#M36654</link>
    <description>tried bt not getting the accurate results</description>
    <pubDate>Mon, 12 Jul 2021 07:20:07 GMT</pubDate>
    <dc:creator>molla</dc:creator>
    <dc:date>2021-07-12T07:20:07Z</dc:date>
    <item>
      <title>Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753080#M36619</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;While doing percentile calculation using proc univariate,&amp;nbsp; I could not get the expected output,pls help me for the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC UNIVARIATE DATA=DATA_SET EXCLNPWGCT;&lt;BR /&gt;VAR VAR1;WEIGHT VAR1;&lt;BR /&gt;OUTPUT OUT=OUTDATASET PCTLPRE=P_PCTLPTS=12.5 25 27.5 50 62.5 75 87.5 100;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the following are the values in the var1 column of the data_set table after excluding the zero and negative values:&lt;/P&gt;
&lt;P&gt;19967.95&lt;BR /&gt;19271.69&lt;BR /&gt;16525.2&lt;BR /&gt;6885.5&lt;BR /&gt;3442.75&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;percentile&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;12.5&lt;BR /&gt;25&lt;BR /&gt;37.5&lt;BR /&gt;50&lt;BR /&gt;62.5&lt;BR /&gt;75&lt;BR /&gt;87.5&lt;BR /&gt;100&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;expected o/p&lt;BR /&gt;5164.125&lt;BR /&gt;6885.5&lt;BR /&gt;11705.35&lt;BR /&gt;16525.2&lt;BR /&gt;17898.44412&lt;BR /&gt;19271.68824&lt;BR /&gt;19619.81912&lt;BR /&gt;19967.95&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;output coming&lt;BR /&gt;6885.5&lt;BR /&gt;16525.2&lt;BR /&gt;16525.2&lt;BR /&gt;19271.68824&lt;BR /&gt;19271.68824&lt;BR /&gt;19967.95&lt;BR /&gt;19967.95&lt;BR /&gt;19967.95&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your help.Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 17:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753080#M36619</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-09T17:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753083#M36620</link>
      <description>&lt;P&gt;The option PCTLDEF= sets which of five different methods are used to calculate percentiles. Read the documentation for the different meanings. Or just try PCTLDEF= 1 (through 4, 5 is the default method and you don't like that) and see if any of the results match expectations.&lt;/P&gt;
&lt;P&gt;The presence of a WEIGHT variable significantly affects the results. I have to say that seeing the same variable on a VAR and WEIGHT statement makes me queasy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 20:36:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753083#M36620</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-07-09T20:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753104#M36621</link>
      <description>&lt;P&gt;to remove the zero and negative values I used weight option ,by trying PCTLDEF option also am not getting the required output&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 17:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753104#M36621</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-09T17:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753106#M36622</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/116130"&gt;@molla&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;to remove the zero and negative values I used weight option ,by trying PCTLDEF option also am not getting the required output&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Be specific: which PCTLDEF options did you try?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 11:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753106#M36622</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-09T11:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753117#M36623</link>
      <description>&lt;P&gt;I tried PCTLDEF = 1&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 17:24:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753117#M36623</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-09T17:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753167#M36624</link>
      <description>&lt;P&gt;I have tried with other options as well but not getting the exact output&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 17:23:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753167#M36624</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-09T17:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753171#M36625</link>
      <description>&lt;P&gt;Try PCTLDEF = 2 and PCTLDEF=3 and PCTLDEF=4&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:44:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753171#M36625</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-09T14:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753176#M36626</link>
      <description>&lt;P&gt;How do you expect it to assign distinct values for the 8 different precentiles when your input only has 5 different values?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753176#M36626</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-07-09T14:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753216#M36627</link>
      <description>&lt;P&gt;Here is an example of what sort of thing might happen when you have "weights" based on the variable you are requesting percentiles about. This uses the same input data set with and without weights.&lt;/P&gt;
&lt;P&gt;Please look at the result and see if one of them comes closer to what you expect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
  do x= 1 to 25;
  output;
  end;
run;

title "with weight";
proc univariate data=example EXCLNPWGT;
 VAR x;
 WEIGHT x;
 OUTPUT OUT=OUTDATASET1 PCTLPRE=P_ PCTLPTS=12.5 25 27.5 50 62.5 75 87.5 100;
RUN;

title "without weight";
proc univariate data=example EXCLNPWGT;
 VAR x;
 OUTPUT OUT=OUTDATASET2 PCTLPRE=P_ PCTLPTS=12.5 25 27.5 50 62.5 75 87.5 100;
RUN;
title;&lt;/PRE&gt;
&lt;P&gt;This is admittedly moderately "nice" data but the purpose is to illustrate that weights and percentiles are a somewhat complex issue and using the same value for the weight is problematic at best.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 16:50:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753216#M36627</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-07-09T16:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753226#M36628</link>
      <description>&lt;P&gt;I edited your meaningless subject line. Please use a more descriptive one next time.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 17:26:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753226#M36628</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-07-09T17:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753284#M36636</link>
      <description>&lt;P&gt;The percentiles you list are Definition #7 in the Hyndman and Fan (1997) lists of nine definitions for sample quantiles. This is the default in R. SAS does not natively support Definition #7, but you can use a formula to obtain it. The article &lt;A href="https://blogs.sas.com/content/iml/2017/05/24/definitions-sample-quantiles.html" target="_self"&gt;"Sample quantiles: A comparison of 9 definitions"&lt;/A&gt; provides the details and SAS code to compute all nine definitions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The article contains the function definitions. Here's how you get your results:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
/* get module from program at https://blogs.sas.com/content/iml/files/2017/05/QntlDef.txt */
load module=(SampQuantile);
use Q; read all var "x"; close;       
prob = {12.5,25,37.5,50,62.5,75,87.5,100} / 100;
def = 7;
quantile = SampQuantile(x, prob, def);
print def prob quantile;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Region Capture.png" style="width: 154px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61107i89B108253354DB16/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Region Capture.png" alt="Region Capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be sure the read the end of my article to understand that these definitions are all estimates for the underlying quantiles of the data-generating distribution. None is "more correct" than any other. As the samples size gets larger, the definitions all give similar estimates.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 20:33:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753284#M36636</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-07-09T20:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753430#M36653</link>
      <description>Hi,&lt;BR /&gt;Its some what complex,not able to understand can we do the same in proc freq or proc mean?&lt;BR /&gt;If yes pls let me know how to do it</description>
      <pubDate>Mon, 12 Jul 2021 07:19:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753430#M36653</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-12T07:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROGRAMMING</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753431#M36654</link>
      <description>tried bt not getting the accurate results</description>
      <pubDate>Mon, 12 Jul 2021 07:20:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753431#M36654</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-12T07:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753455#M36655</link>
      <description>&lt;P&gt;OK, here's a simpler suggestion: use the default estimates from PROC UNIVARIATE or another SAS procedure.&lt;/P&gt;
&lt;P&gt;SAS procedures provide five ways to estimate quantiles. There are other estimates, as discussed in my article. But all of these are valid estimates and, in practice, there is rarely a reason to prefer one estimate over the other.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 10:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753455#M36655</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-07-12T10:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753499#M36659</link>
      <description>By using the five ways of sas to estimate quantiles am not getting the accurate output,not able to understand how to implement the way which u have explained</description>
      <pubDate>Mon, 12 Jul 2021 13:45:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753499#M36659</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-12T13:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753507#M36660</link>
      <description>&lt;P&gt;Let me say it again: quantiles are &lt;EM&gt;statistics&lt;/EM&gt;, which means that they estimate underlying parameters in the population (in this case, the quantiles of the population).&amp;nbsp; The values you say are "correct" are merely the sample quantiles that R computes by default. There are many definitions of sample quantiles. None are more correct than the others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following SAS/IML program simplifies the program in my blog post and computes only the TYPE=7 definition, which is the default in R. You can run this program to obtain the sample quantiles that you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Compute the sample quantiles that R computes by default */
proc iml;
/* Define function that returns the TYPE=7 sample quantiles. For more info, see&lt;BR /&gt;   https://blogs.sas.com/content/iml/2017/05/24/definitions-sample-quantiles.html&lt;BR /&gt;*/
start GetRQuantiles(y, probs);
   x = colvec(y);
   call sort(x);
   N = nrow(x);       /* assume all values are nonmissing */
   
   p = colvec(probs);
   m = 1-p;
   j = floor(N*p + m);
   g = N*p + m - j;

   q = j(nrow(p), 1, x[N]);    /* if p=1, x[N]=return max(x) */
   idx = loc(p &amp;lt; 1);
   if ncol(idx) &amp;gt;0 then do;
      j = j[idx]; g = g[idx];
      q[idx] = (1-g)#x[j] + g#x[j+1];
   end;   
   return q;
finish;

use Q; read all var "x"; close;       /* read sample into x */
p = {12.5, 25, 37.5, 50, 62.5, 75, 87.5, 100} / 100;  /* define probabilities */
q = GetRQuantiles(x, p);  /* sample quantiles */
print p q;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Jul 2021 14:33:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753507#M36660</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-07-12T14:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753591#M36662</link>
      <description>I tried using the above code&lt;BR /&gt;but not able to understand how can I use the below coding in sas&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;use Q; read all var "x"; close; /* read sample into x */&lt;BR /&gt;p = {12.5, 25, 37.5, 50, 62.5, 75, 87.5, 100} / 100; /* define probabilities */&lt;BR /&gt;q = GetRQuantiles(x, p); /* sample quantiles */&lt;BR /&gt;print p q;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jul 2021 19:26:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753591#M36662</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-12T19:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753592#M36663</link>
      <description>that coding part is in R as per my understanding,how can we use the same in SAS,&lt;BR /&gt;Is there any other way in computing the quantiles other than this to get the accurate results&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jul 2021 19:28:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753592#M36663</guid>
      <dc:creator>molla</dc:creator>
      <dc:date>2021-07-12T19:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753595#M36664</link>
      <description>&lt;P&gt;So did you create a dataset named Q with a variable named X for the IML code to read int?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data q;
  input x;
cards;
19967.95
19271.69
16525.2
6885.5
3442.75
;



proc iml;
/* Define function that returns the TYPE=7 sample quantiles. For more info, see   https://blogs.sas.com/content/iml/2017/05/24/definitions-sample-quantiles.html*/
start GetRQuantiles(y, probs);
   x = colvec(y);
   call sort(x);
   N = nrow(x);       /* assume all values are nonmissing */
   
   p = colvec(probs);
   m = 1-p;
   j = floor(N*p + m);
   g = N*p + m - j;

   q = j(nrow(p), 1, x[N]);    /* if p=1, x[N]=return max(x) */
   idx = loc(p &amp;lt; 1);
   if ncol(idx) &amp;gt;0 then do;
      j = j[idx]; g = g[idx];
      q[idx] = (1-g)#x[j] + g#x[j+1];
   end;   
   return q;
finish;

use q; read all var "x"; close;       /* read sample into x */
p = {12.5, 25, 37.5, 50, 62.5, 75, 87.5, 100} / 100;  /* define probabilities */
q = GetRQuantiles(x, p);  /* sample quantiles */
print p q;

quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 159px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61146iAA56AAFE533F1962/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 19:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753595#M36664</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-07-12T19:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753596#M36665</link>
      <description>&lt;P&gt;I am trying to complete a project, so I will let others help you. Good luck!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 19:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Percentiles-with-PROC-UNIVARIATE/m-p/753596#M36665</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-07-12T19:44:21Z</dc:date>
    </item>
  </channel>
</rss>

