<?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: Calculate percentile based on Z-score in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460714#M117124</link>
    <description>&lt;P&gt;It is better to explain by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 08 May 2018 14:41:11 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2018-05-08T14:41:11Z</dc:date>
    <item>
      <title>Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460683#M117119</link>
      <description>&lt;P&gt;Hi guys, I'd like to calculate percentile based on z-score. My data is massive where using z-score-percentile conversion table is futile. Please help? Below is&amp;nbsp;first few observation of my data. Thanks!!!!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data p.temp; 
input zcore;
cards;
0.16
3.1
-0.33
1.72
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 13:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460683#M117119</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-05-08T13:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460685#M117120</link>
      <description>&lt;P&gt;You can use the PROBNORM function&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=p0am6dtkvnrb09n132vioa1z6oen.htm&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=p0am6dtkvnrb09n132vioa1z6oen.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 13:22:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460685#M117120</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-08T13:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460690#M117121</link>
      <description>&lt;P&gt;Thanks a lot &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp1; set temp;
pctl=probnorm(zcore);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;zcore&amp;nbsp; pctl&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;0.16&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.56&lt;/P&gt;
&lt;P&gt;3.1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.99&lt;/P&gt;
&lt;P&gt;-0.33&amp;nbsp;&amp;nbsp; 0.37&lt;/P&gt;
&lt;P&gt;1.7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.96&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please correct me if I'm wrong. But it looks like it. I will double check with the conversion table as well.&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 13:34:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460690#M117121</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-05-08T13:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460705#M117122</link>
      <description>&lt;P&gt;Function&amp;nbsp;&lt;SPAN&gt;PROBNORM() is too old ,Check CDF().&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp; 
input zcore;
p=cdf('normal',zcore);
cards;
0.16
3.1
-0.33
1.72
;

proc print;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 May 2018 14:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460705#M117122</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-05-08T14:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460708#M117123</link>
      <description>&lt;P&gt;Too old? What risk does this pose to the user? The function is still supported by SAS, and the probabilities of a normal distribution haven't changed.&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 14:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460708#M117123</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-08T14:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460714#M117124</link>
      <description>&lt;P&gt;It is better to explain by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 14:41:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460714#M117124</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-05-08T14:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460764#M117142</link>
      <description>&lt;P&gt;Yes, there is a caveat regarding the "older" PROBXXX functions in Rick's Blog ("The DO Loop"). Just found it again:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2013/07/10/stop-using-ranuni.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2013/07/10/stop-using-ranuni.html&lt;/A&gt;&amp;nbsp;(at the bottom of the blog entry).&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 17:22:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460764#M117142</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-05-08T17:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate percentile based on Z-score</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460773#M117147</link>
      <description>&lt;P&gt;Thank you for the link,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;. That's very interesting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I am understanding properly, the new functions will perform better when&amp;nbsp; you have very small or very large values, but in the range of –10 to +10, I just wrote a program and PROBNORM(x) and CDF('normal',x) give the same answers (at least to 14 decimal places).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any event, SAS ought to update the PROBNORM (and similar functions) documentation to specifically say that users ought to use the newer CDF function, and state the reasons.&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 17:34:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Calculate-percentile-based-on-Z-score/m-p/460773#M117147</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-08T17:34:29Z</dc:date>
    </item>
  </channel>
</rss>

