{"id":3967,"date":"2022-02-02T00:33:26","date_gmt":"2022-02-02T08:33:26","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=3967"},"modified":"2022-02-02T00:33:28","modified_gmt":"2022-02-02T08:33:28","slug":"percentile-vs-percentile-inc-vs-percentile-exc","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=3967","title":{"rendered":"PERCENTILE vs PERCENTILE.INC vs PERCENTILE.EXC"},"content":{"rendered":"\n<p>PERCENTILE.EXC and PERCENTILE.INC differs only in the way the possibly-non-integer rank is calculated.<\/p>\n\n\n\n<p>For PERCENTILE.INC (and PERCENTILE) the calculated rank is K*(N-1)+1.<\/p>\n\n\n\n<p>For PERCENTILE.EXC the calculated rank is K*(N+1).<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"percentile\">Percentile<\/h2>\n\n\n\n<p>Percentile is a statistics term used to describe the Nth observation in a data set after sorting in ascending order. For example, 40th percentile (P40) refers to the&nbsp;<strong>approximately&nbsp;<\/strong>40th data of the 100 data. If the data set is not exactly 100, say 200, we find the location of observation at 40% of total data.<\/p>\n\n\n\n<p>Percentile is commonly used in salary survey to find out the 25th 50th, 75th, 90th percentile. 50% percentile is known as median, human resources department always compares P50 salary with employees\u2019 salary so that they know who are below market compensation. Some companies may have salary guideline of P75, which means they generally pay better than the market in order to attract and retain talents. Percentile is a better measure than average because extreme data are disregarded using percentile.<\/p>\n\n\n\n<p>There are three Functions to calculate percentile in Excel (<a href=\"https:\/\/support.office.microsoft.com\/en-us\/article\/PERCENTILE-function-c4e7c1f5-a07e-4302-8d6f-2c045640dcd5\" target=\"_blank\" rel=\"noreferrer noopener\">PERCENTILE<\/a>,&nbsp;<a href=\"https:\/\/support.office.com\/en-us\/article\/PERCENTILEINC-Function-DAX-15f69af8-1588-4863-9acf-2acc00384ffd\" target=\"_blank\" rel=\"noreferrer noopener\">PERCENTILE.INC<\/a>,&nbsp;<a href=\"https:\/\/support.office.com\/en-US\/Article\/PERCENTILEEXC-function-bbaa7204-e9e1-4010-85bf-c31dc5dce4ba\" target=\"_blank\" rel=\"noreferrer noopener\">PERCENTILE.EXC<\/a>). Before we look into the difference, let\u2019s look at an example of manual calculation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"percentile-manual-calculation\">Percentile \u2013 Manual calculation<\/h2>\n\n\n\n<p>There are basically two kinds of percentile calculation. Although the results are slightly different, both are considered correct. If you want to know all other methods,&nbsp;<a href=\"http:\/\/en.wikipedia.org\/wiki\/Percentile\" target=\"_blank\" rel=\"noreferrer noopener\">click here<\/a>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"method-1-using-n-1-p\">Method 1 \u2013 using (n+1)*p<\/h4>\n\n\n\n<p>This is the most common approach written in college statistics text book.<\/p>\n\n\n\n<p>To calculate percentile, find out the location (or rank) of the percentile first<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Location of a Percentile&nbsp; = (total number of observations + 1) * (target percentile \/ 100)<\/pre>\n\n\n\n<p>Using the data set&nbsp;<strong>1, 3, 5, 7<\/strong>&nbsp;as example,<\/p>\n\n\n\n<p>Location of P75 = (4+1)*(75\/100)<\/p>\n\n\n\n<p>============== 3.75<\/p>\n\n\n\n<p>The 3.75th percentile is three quarters of the distance between the third and forth observation, therefore<\/p>\n\n\n\n<p>Value of P75 = 3rd observation + (4th observation -3rd observation ) * 0.75<\/p>\n\n\n\n<p>=========== 5+(7-5)*0.75<\/p>\n\n\n\n<p>=========== 6.5<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"method-2-using-n-1-p-1\">Method 2 \u2013 using (n-1)*p+1<\/h4>\n\n\n\n<p>Method 1 and Method 2 are only different when the calculated location&nbsp;(rank) of percentile is non-integer.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Location of a Percentile&nbsp; = (total number of observations - 1) * (target percentile \/ 100) + 1<\/pre>\n\n\n\n<p>Using the data set&nbsp;<strong>1, 3, 5, 7<\/strong>&nbsp;as example,<\/p>\n\n\n\n<p>Location of P75 = (4-1)*(75\/100)+1<\/p>\n\n\n\n<p>============== 3.25<\/p>\n\n\n\n<p>Value of P75 = 3rd observation + (4th observation -3rd observation ) * 0.25<\/p>\n\n\n\n<p>=========== 5+(7-5)*0.25<\/p>\n\n\n\n<p>=========== 5.5<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"percentile-excel-calculation\">Percentile \u2013 Excel calculation<\/h2>\n\n\n\n<p>There are three Functions relating to percentile in Excel :PERCENTILE, PERCENTILE.INC, PERCENTILE.EXC<\/p>\n\n\n\n<p>If you want to calculate percentile using Method 1, use&nbsp;<strong>PERCENTILE.EXC<\/strong>&nbsp;Function.<\/p>\n\n\n\n<p>If you want to calculate percentile using Method 2, use&nbsp;<strong>PERCENTILE&nbsp;<\/strong>or&nbsp;<strong>PERCENTILE.INC<\/strong>&nbsp;Function, both are the same.<\/p>\n\n\n\n<p>PERCENTILE.EXC and PERCENTILE.INC are new versions of PERCENTILE. PERCENTILE remains in Excel for compatibility purpose only, you can ignore this Function.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"syntax\">Syntax<\/h4>\n\n\n\n<p>All three Functions have the same arguments<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">PERCENTILE(array, k)<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">PERCENTILE.INC(array, k)<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">PERCENTILE.EXC(array, k)<\/pre>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>array<\/td><td>The array or range of data that defines relative standing.<\/td><\/tr><tr><td>k<\/td><td>The percentile value in decimal number<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>PERCENTILE.EXC works if k is between 1\/n and 1-1\/n, while PERCENTILE.INC works if k is between 0 and 1.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"example\">Example<\/h4>\n\n\n\n<p>Suppose data set&nbsp;<strong>1, 3, 5, 7<\/strong>&nbsp;lie in Range A1:A4. To find P75<\/p>\n\n\n\n<p><strong>Method 1:<\/strong><\/p>\n\n\n\n<p>= PERCENTILE.EXC(A1:A4,0.75)<\/p>\n\n\n\n<p>= 6.5<\/p>\n\n\n\n<p><strong>Method 2:<\/strong><\/p>\n\n\n\n<p>= PERCENTILE.INC(A1:A4,0.75)<\/p>\n\n\n\n<p>= 5.5<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PERCENTILE.EXC and PERCENTILE.INC differs only in the way the possibly-non-integer rank is calculated. For PERCENTILE.INC (and PERCENTILE) the calculated rank is K*(N-1)+1. For PERCENTILE.EXC the calculated rank is K*(N+1). Percentile Percentile is a statistics term used to describe the Nth observation in a data set after sorting in ascending order. For example, 40th percentile (P40) <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=3967\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[10,18,621],"tags":[1084,1081,1080,1085,1083],"class_list":["post-3967","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-microsoft-office","category-power-bi","tag-percentile","tag-percentile-percentile-inc-percentile-exc","tag-percentile-vs-percentile-inc-vs-percentile-exc","tag-percentile-exc","tag-percentile-inc"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3967","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3967"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3967\/revisions"}],"predecessor-version":[{"id":3968,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3967\/revisions\/3968"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3967"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3967"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3967"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}