<?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: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638115#M19734</link>
    <description>&lt;P&gt;Thank yo for the replying. I have the following version:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;For SAS/GRAPH ...
   Custom version information: 9.4_M5
For SAS/IML ...
   Custom version information: 14.3
For High Performance Suite ...
   Custom version information: 2.2_M6
For SAS/ACCESS Interface to PC Files ...
   Custom version information: 9.4_M5
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Could you please provide a link or draft syntax of such sort of calculations?&lt;/P&gt;</description>
    <pubDate>Tue, 07 Apr 2020 15:41:15 GMT</pubDate>
    <dc:creator>DmytroYermak</dc:creator>
    <dc:date>2020-04-07T15:41:15Z</dc:date>
    <item>
      <title>5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638101#M19730</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please help with option in &lt;STRONG&gt;proc sgplot&lt;/STRONG&gt; that displays &lt;STRONG&gt;5 percentiles&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;10th, 25th, 50th, 75th and 90th.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here it is the code and the output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=output_1;
  by SubType;
  hbox AGE / category=AVAL;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Title2.jpg" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37992iD46DED23E6FBEDF5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Title2.jpg" alt="Title2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 15:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638101#M19730</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2020-04-07T15:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638106#M19732</link>
      <description>&lt;P&gt;What version of SAS do you have? Very specifically, such as SAS 9.4TS1M6.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The graphical options change quickly. The code below will show the image.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suspect what you'll need to do is pre-calculate the percentiles (PROC SUMMARY) and then use a SCATTER or TEXT statement to plot those points correctly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 15:24:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638106#M19732</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-07T15:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638115#M19734</link>
      <description>&lt;P&gt;Thank yo for the replying. I have the following version:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;For SAS/GRAPH ...
   Custom version information: 9.4_M5
For SAS/IML ...
   Custom version information: 14.3
For High Performance Suite ...
   Custom version information: 2.2_M6
For SAS/ACCESS Interface to PC Files ...
   Custom version information: 9.4_M5
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Could you please provide a link or draft syntax of such sort of calculations?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 15:41:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638115#M19734</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2020-04-07T15:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638118#M19735</link>
      <description>&lt;P&gt;So you want whiskers that extend to the 10th and 90th percentiles?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think SGPLOT can do that.&amp;nbsp; I think you might need to calculate the percentiles yourself, then use GTL BOXPARM to draw the box plots.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or actually, just came across this blog post where Sanjay Matange shows a way to make a custom box plot by using SGPLOT to make a HIGHLOW plot.&amp;nbsp; Looks promising.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2013/03/24/custom-box-plots/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2013/03/24/custom-box-plots/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 16:01:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638118#M19735</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-04-07T16:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638119#M19736</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/58513"&gt;@DmytroYermak&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With your SAS 9.4M5 (and&amp;nbsp;SAS 9.4M2 and later releases) you can also use the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=p1gylmjb4jaadfn1233wm4uzeb0e.htm&amp;amp;locale=en#p0w49h7u2t06cfn1mfzn8t003auga" target="_blank" rel="noopener"&gt;WHISKERPCT= option&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;hbox AGE / category=AVAL whiskerpct=10;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then the whiskers will indicate the 10th and 90th percentile. The 25th and 75th percentile are (by default) the edges of the box and the 50th percentile the line inside the box.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 16:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638119#M19736</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-04-07T16:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638121#M19737</link>
      <description>&lt;P&gt;You can use the DISPLAYSTATS option to show them, but you will need to use a VBOX statement instead of the HBOX statement to use that option. Try DISPLASTATS=ALL to see all of the available stats, but you can use a parenthesized list of stats to display the ones you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 16:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638121#M19737</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-04-07T16:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638122#M19738</link>
      <description>&lt;P&gt;Nice!&amp;nbsp; I hadn't noticed WHISKERPCT.&amp;nbsp; Always dangerous to say SAS can't do something. : )&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 16:08:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638122#M19738</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-04-07T16:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638129#M19739</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; all!&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=p1gylmjb4jaadfn1233wm4uzeb0e.htm&amp;amp;locale=en#p0w49h7u2t06cfn1mfzn8t003auga" target="_blank" rel="noopener nofollow noopener noreferrer"&gt;WHISKERPCT= option&lt;/A&gt;&amp;nbsp; &amp;nbsp;has worked out.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 16:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638129#M19739</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2020-04-07T16:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: 5 percentiles in proc sgplot: 10th, 25th, 50th, 75th and 90th</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638140#M19740</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Nice!&amp;nbsp; I hadn't noticed WHISKERPCT.&amp;nbsp; Always dangerous to say SAS can't do something. : )&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's good to be wrong sometimes, glad I was as well! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 17:20:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/5-percentiles-in-proc-sgplot-10th-25th-50th-75th-and-90th/m-p/638140#M19740</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-07T17:20:16Z</dc:date>
    </item>
  </channel>
</rss>

