<?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 Ranking order with the same score in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853605#M42248</link>
    <description>&lt;P&gt;i have customer feedback ranking for my staff . how do i rank the based on how frequently they were rated. how do I know who is the best staff in customer service&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name. &amp;nbsp;score &amp;nbsp;Number of times rated&amp;nbsp;&lt;/P&gt;&lt;P&gt;Joe. &amp;nbsp; &amp;nbsp; &amp;nbsp; 100. &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;Matt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100. &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;Phil. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 99. &amp;nbsp; &amp;nbsp; &amp;nbsp;15&lt;/P&gt;&lt;P&gt;Eugene. &amp;nbsp; 90. &amp;nbsp; &amp;nbsp; &amp;nbsp;20&lt;/P&gt;&lt;P&gt;Kobby. &amp;nbsp; &amp;nbsp; 99. &amp;nbsp; &amp;nbsp; &amp;nbsp; 15&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jan 2023 01:56:23 GMT</pubDate>
    <dc:creator>kpakpo</dc:creator>
    <dc:date>2023-01-13T01:56:23Z</dc:date>
    <item>
      <title>Ranking order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853608#M42243</link>
      <description>&lt;P&gt;i have customer feedback ranking for my staff and 5 of them all scored 100 percent how do i rank the based on how frequently they were rated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-01-13 at 02.07.45.png" style="width: 389px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79337iD2437ABC2B83D474/image-dimensions/389x138?v=v2" width="389" height="138" role="button" title="Screenshot 2023-01-13 at 02.07.45.png" alt="Screenshot 2023-01-13 at 02.07.45.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 02:08:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853608#M42243</guid>
      <dc:creator>kpakpo</dc:creator>
      <dc:date>2023-01-13T02:08:41Z</dc:date>
    </item>
    <item>
      <title>Ranking order with the same score</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853605#M42248</link>
      <description>&lt;P&gt;i have customer feedback ranking for my staff . how do i rank the based on how frequently they were rated. how do I know who is the best staff in customer service&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name. &amp;nbsp;score &amp;nbsp;Number of times rated&amp;nbsp;&lt;/P&gt;&lt;P&gt;Joe. &amp;nbsp; &amp;nbsp; &amp;nbsp; 100. &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;Matt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;100. &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;Phil. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 99. &amp;nbsp; &amp;nbsp; &amp;nbsp;15&lt;/P&gt;&lt;P&gt;Eugene. &amp;nbsp; 90. &amp;nbsp; &amp;nbsp; &amp;nbsp;20&lt;/P&gt;&lt;P&gt;Kobby. &amp;nbsp; &amp;nbsp; 99. &amp;nbsp; &amp;nbsp; &amp;nbsp; 15&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 01:56:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853605#M42248</guid>
      <dc:creator>kpakpo</dc:creator>
      <dc:date>2023-01-13T01:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853612#M42244</link>
      <description>&lt;P&gt;Not sure what you mean.&lt;/P&gt;
&lt;P&gt;If you want to number the observations just use a simple &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/n1dfiqj146yi2cn1maeju9wo7ijs.htm" target="_self"&gt;SUM statement&lt;/A&gt;.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=have ;
  by descending score descending number_of_times_rated;
run;
data want;
  set have;
  by descending score descending number_of_times_rated;
  rank + 1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Jan 2023 04:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853612#M42244</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-13T04:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853620#M42245</link>
      <description>&lt;P&gt;I won't open any attachments, so please post data in usable form and show the expected result.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 07:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853620#M42245</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2023-01-13T07:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853658#M42246</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438453"&gt;@kpakpo&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;i have customer feedback ranking for my staff and 5 of them all scored 100 percent how do i rank the based on how frequently they were rated&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If I am understanding properly (and maybe I am not understanding properly), you can rank via PROC SORT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=have out=have_sorted;
    by descending score descending number_of_times_rated;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please do not include data as file attachments or screen captures. Many of us will not download attachments, and we can't write code from screen captures. We need data provided as working SAS data step code, see &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;. Many people go ahead and just ignore this request, but that is not a good way to get help ... do not ignore this request. We're trying to help you, but you need to help us too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 11:01:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853658#M42246</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-13T11:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853659#M42247</link>
      <description>&lt;P&gt;Proc sort data=yourdata;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; by descending score descending numberoftimesrated;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc print data=yourdata;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 10:55:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853659#M42247</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-01-13T10:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking order with the same score</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853662#M42249</link>
      <description>&lt;P&gt;This is a duplicate thread. All answers should go in your &lt;A href="https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/td-p/853608/jump-to/first-unread-message" target="_self"&gt;other thread&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438453"&gt;@kpakpo&lt;/a&gt; do not post the same question multiple times.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 10:57:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ranking-order/m-p/853662#M42249</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-13T10:57:08Z</dc:date>
    </item>
  </channel>
</rss>

