<?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 Percentiles with proc univariate in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Percentiles-with-proc-univariate/m-p/892232#M352415</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a simple dataset, which contains several demographic variables such as sex and age of persons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to display the mean std median p25 p65 p75 p85 and p95 of the variable "age".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use the proc univariate command, which does not give me p65, p85 and p95 automatically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there an easy way to provide them with proc univariate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 10:02:33 GMT</pubDate>
    <dc:creator>Tamino</dc:creator>
    <dc:date>2023-09-01T10:02:33Z</dc:date>
    <item>
      <title>Percentiles with proc univariate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentiles-with-proc-univariate/m-p/892232#M352415</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a simple dataset, which contains several demographic variables such as sex and age of persons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to display the mean std median p25 p65 p75 p85 and p95 of the variable "age".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use the proc univariate command, which does not give me p65, p85 and p95 automatically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there an easy way to provide them with proc univariate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 10:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentiles-with-proc-univariate/m-p/892232#M352415</guid>
      <dc:creator>Tamino</dc:creator>
      <dc:date>2023-09-01T10:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Percentiles with proc univariate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentiles-with-proc-univariate/m-p/892241#M352418</link>
      <description>&lt;P&gt;You can have PROC UNIVARIATE write these percentiles to the output data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=sashelp.class;
    var height;
    output out=stats pctlpts=65 75 85 95 pctlpre=pctile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Sep 2023 10:28:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentiles-with-proc-univariate/m-p/892241#M352418</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-09-01T10:28:08Z</dc:date>
    </item>
  </channel>
</rss>

