<?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: looking for 15’ percentile in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/looking-for-15-percentile/m-p/438488#M109338</link>
    <description>&lt;P&gt;When using the "statistiche di riepilogo" you&amp;nbsp;will be automatically generating PROC MEANS code. Unfortunately, PROC MEANS does not support custom percentiles as you're asking for. You can, however, use some other procedures such as PROC UNIVARIATE or PROC STDIZE. I recommend PROC STDIZE but you can see examples of both used in &lt;A href="https://blogs.sas.com/content/iml/2013/10/23/percentiles-in-a-tabular-format.html" target="_blank"&gt;this blog post&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a [slightly modified] snippet of code running the STDIZE procedure as you are looking for.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc stdize data=sashelp.cars PctlMtd=ORD_STAT outstat=StdLongPctls
           pctlpts=15;
var mpg_city mpg_highway;
run;
 
proc print data=StdLongPctls noobs;
where _type_ =: 'P';
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 19 Feb 2018 20:46:11 GMT</pubDate>
    <dc:creator>GinaRepole</dc:creator>
    <dc:date>2018-02-19T20:46:11Z</dc:date>
    <item>
      <title>looking for 15’ percentile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/looking-for-15-percentile/m-p/438478#M109332</link>
      <description>&lt;P&gt;dear SAS community,&lt;/P&gt;&lt;P&gt;i hope i can describe what my question is.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i’ve been trying to analyze a sample through percentiles.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i’ve used the tool “statistiche di riepilogo” which translated could be something like “summary statistics”.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in option, i can tick 1. 10, 25, 50, 75, 95, 99 percentile.&lt;/P&gt;&lt;P&gt;but i want 15!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;anyone can&amp;nbsp;help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i’ve already tried to change the codes but, when i write p15 it &amp;nbsp;reports me this p15 as an error.&lt;/P&gt;&lt;P&gt;Looking forward to hearing from you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;federica&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 19:54:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/looking-for-15-percentile/m-p/438478#M109332</guid>
      <dc:creator>federicamazetta</dc:creator>
      <dc:date>2018-02-19T19:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: looking for 15’ percentile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/looking-for-15-percentile/m-p/438488#M109338</link>
      <description>&lt;P&gt;When using the "statistiche di riepilogo" you&amp;nbsp;will be automatically generating PROC MEANS code. Unfortunately, PROC MEANS does not support custom percentiles as you're asking for. You can, however, use some other procedures such as PROC UNIVARIATE or PROC STDIZE. I recommend PROC STDIZE but you can see examples of both used in &lt;A href="https://blogs.sas.com/content/iml/2013/10/23/percentiles-in-a-tabular-format.html" target="_blank"&gt;this blog post&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a [slightly modified] snippet of code running the STDIZE procedure as you are looking for.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc stdize data=sashelp.cars PctlMtd=ORD_STAT outstat=StdLongPctls
           pctlpts=15;
var mpg_city mpg_highway;
run;
 
proc print data=StdLongPctls noobs;
where _type_ =: 'P';
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Feb 2018 20:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/looking-for-15-percentile/m-p/438488#M109338</guid>
      <dc:creator>GinaRepole</dc:creator>
      <dc:date>2018-02-19T20:46:11Z</dc:date>
    </item>
  </channel>
</rss>

