<?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 Looking for Best Way to Summarize Percentiles Across Groups in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Looking-for-Best-Way-to-Summarize-Percentiles-Across-Groups/m-p/155504#M40841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is my very basic code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc univariate data = Combined;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by Bin;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var Gross;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output pctlpre = P_ pctlpts = 1, 5 to 95 by 5, 9, 100;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am only interested in seeing the percentiles and none of the rest of the univariate output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It also would be groovy to see the results side-by-side for each Bin. I have 10 Bins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Feb 2015 16:26:26 GMT</pubDate>
    <dc:creator>Zachary</dc:creator>
    <dc:date>2015-02-05T16:26:26Z</dc:date>
    <item>
      <title>Looking for Best Way to Summarize Percentiles Across Groups</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Looking-for-Best-Way-to-Summarize-Percentiles-Across-Groups/m-p/155504#M40841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is my very basic code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc univariate data = Combined;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by Bin;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var Gross;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output pctlpre = P_ pctlpts = 1, 5 to 95 by 5, 9, 100;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am only interested in seeing the percentiles and none of the rest of the univariate output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It also would be groovy to see the results side-by-side for each Bin. I have 10 Bins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 16:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Looking-for-Best-Way-to-Summarize-Percentiles-Across-Groups/m-p/155504#M40841</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-02-05T16:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Best Way to Summarize Percentiles Across Groups</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Looking-for-Best-Way-to-Summarize-Percentiles-Across-Groups/m-p/155505#M40842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ODS SELECT NONE and a proc transpose on your output. &lt;/P&gt;&lt;P&gt;Also, you haven't specified the data set in your OUTPUT statement which is a bit odd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=sashelp.cars out=cars; by origin;&lt;/P&gt;&lt;P&gt;ods select none;&lt;/P&gt;&lt;P&gt;proc univariate data = cars;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by origin;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var mpg_highway;&lt;/P&gt;&lt;P&gt;&amp;nbsp; output out=want pctlpre = P_ pctlpts = 1, 5 to 95 by 5, 9, 100;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods select all;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc transpose data=want out=want2;&lt;/P&gt;&lt;P&gt;id origin;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=want2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 16:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Looking-for-Best-Way-to-Summarize-Percentiles-Across-Groups/m-p/155505#M40842</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-02-05T16:49:44Z</dc:date>
    </item>
  </channel>
</rss>

