<?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: Quintile cut offs in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642505#M191685</link>
    <description>&lt;P&gt;Would this be acceptable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc means data=new min p20 p40 p60 p80 max median ;&lt;/P&gt;&lt;P&gt;class quintiles;&lt;/P&gt;&lt;P&gt;var Score ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Apr 2020 10:06:21 GMT</pubDate>
    <dc:creator>anonymous_user</dc:creator>
    <dc:date>2020-04-24T10:06:21Z</dc:date>
    <item>
      <title>Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642498#M191679</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a question about quintiles please. I divided a score into quintiles. In SAS how can I get the exact cut offs of each quintile and then how can I calculate the median value of each quintile please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate any help!&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 09:42:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642498#M191679</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2020-04-24T09:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642505#M191685</link>
      <description>&lt;P&gt;Would this be acceptable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc means data=new min p20 p40 p60 p80 max median ;&lt;/P&gt;&lt;P&gt;class quintiles;&lt;/P&gt;&lt;P&gt;var Score ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 10:06:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642505#M191685</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2020-04-24T10:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642518#M191692</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@anonymous_user&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a question about quintiles please. I divided a score into quintiles. In SAS how can I get the exact cut offs of each quintile and then how can I calculate the median value of each quintile please?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since the median of a quintile is itself a percentile, you want the 10, 20, 30, 40 ... percentiles. So you really want&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=new min p10 p20 p30 p40 p50 p60 p70 p80 p90 max;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Apr 2020 11:17:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642518#M191692</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-04-24T11:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642520#M191693</link>
      <description>Use PROC RANK to get quantitle.&lt;BR /&gt;proc rank data=have out=temp;&lt;BR /&gt;var variable;&lt;BR /&gt;ranks group;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Use PROC SQL to get min max or cut off value and median.&lt;BR /&gt;proc sql;&lt;BR /&gt;select group,min(variable) as min,max(variable) as max,median(variable) as median&lt;BR /&gt; from temp&lt;BR /&gt;  group by group;&lt;BR /&gt;quit;</description>
      <pubDate>Fri, 24 Apr 2020 11:21:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642520#M191693</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-04-24T11:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642522#M191695</link>
      <description>&lt;P&gt;Thank you ver much!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 11:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642522#M191695</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2020-04-24T11:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Quintile cut offs</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642523#M191696</link>
      <description>&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 11:25:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Quintile-cut-offs/m-p/642523#M191696</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2020-04-24T11:25:28Z</dc:date>
    </item>
  </channel>
</rss>

