Difference between revisions of "Manuals/calci/PERCENTRANK"

From ZCubes Wiki
Jump to navigation Jump to search
Line 8: Line 8:
 
*For example, a test score that is greater than or equal to 50% of the scores of people taking the test is said to be at the 50th percentile rank.
 
*For example, a test score that is greater than or equal to 50% of the scores of people taking the test is said to be at the 50th percentile rank.
 
*Percentile ranks are commonly used to clarify the interpretation of scores on standardized tests.
 
*Percentile ranks are commonly used to clarify the interpretation of scores on standardized tests.
* To find the percentile rank of a score is :<math>PR \%= \frac {L+( 0.5*S )}{N}  
+
* To find the percentile rank of a score is :<math>PR \%= \frac {L+( 0.5*S )}{N}</math>
 
Where,
 
Where,
 
L = Number of below rank,  
 
L = Number of below rank,  
Line 15: Line 15:
 
*In PERCENTRANK(ar,x),ar is the array  of numeric values and x is the value to find the rank. This function gives the result as error when array is empty .
 
*In PERCENTRANK(ar,x),ar is the array  of numeric values and x is the value to find the rank. This function gives the result as error when array is empty .
  
where,
+
==Examples==
 +
#3
 +
4
 +
1
 +
2
 +
1
 +
PERCENTRANK(A1:A5,2)=0.5
 +
#7
 +
6
 +
2
 +
5
 +
9
 +
1
 +
PERCENTRANK(B1:B6,3)=0.267
  
'''Array''' -  represents set of data.
 
  
'''X''' - represents the rank for value.
+
==See Also==
 +
*[[Manuals/calci/MAX  | MAX ]]
 +
*[[Manuals/calci/MIN  | MIN ]]
 +
*[[Manuals/calci/MEDIAN  | MEDIAN ]]
 +
*[[Manuals/calci/QUARTILE  | QUARTILE ]]
 +
*[[Manuals/calci/PERCENTILE  | PERCENTILE ]]
  
'''k''' - represents the number of significant digit for the returned percentage value.If omitted, it returns 3 digit after decimal point.
 
  
</div>
+
==References==
----
 
<div id="1SpaceContent" class="zcontent" align="left">It returns the rank for data set as a percentage of the data set.</div>
 
----
 
<div id="7SpaceContent" class="zcontent" align="left">
 
 
 
If k &lt; 1, PERCENTRANK returns the #ERROR.
 
 
 
</div>
 
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
 
 
PERCENTRANK
 
 
 
</div></div>
 
----
 
<div id="8SpaceContent" class="zcontent" align="left">
 
 
 
Lets see an example in (Column2, Row1)
 
 
 
UNIQ9722b96f1f2484ba-nowiki-00000004-QINU
 
 
 
PERCENTRANK returns 0.66667.
 
 
 
Cosider an another example
 
 
 
UNIQ9722b96f1f2484ba-nowiki-00000005-QINU
 
 
 
It returns #ERROR(K=-1).
 
 
 
</div>
 
----
 
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Remarks </div></div>
 
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
 
 
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
| class=" " |
 
| class="  " | Column1
 
| class="  " | Column2
 
| Column3
 
| Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class=" " | 5
 
| class="sshl_f" | 0.066667
 
|
 
|
 
|- class="even"
 
| class="  " | Row2
 
| class=" " | 7
 
| class="            SelectTD ChangeBGColor SelectTD" |
 
<div id="2Space_Handle" class="zhandles" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="2Space_Copy" class="zhandles" title="Click and Drag over to AutoFill other cells."></div><div id="2Space_Drag" class="zhandles" title="Click and Drag to Move/Copy Area.">[[Image:copy-cube.gif]]  </div>
 
|
 
|
 
|- class="odd"
 
| Row3
 
| class=" " | 18
 
|
 
|
 
|
 
|- class="even"
 
| Row4
 
| class=" " | 23
 
|
 
|
 
|
 
|- class="odd"
 
| class=" " | Row5
 
| class=" " | 41
 
|
 
|
 
|
 
|- class="even"
 
| Row6
 
| class=" " | 2
 
|
 
|
 
|
 
|}
 
 
 
<div align="left">[[Image:calci1.gif]]</div></div>
 
----
 

Revision as of 01:23, 6 January 2014

PERCENTRANK(ar,x)


  • is the array data and is the value


Description

  • This function gives the percentage rank of a value in a given set of numbers.
  • To calculate the relative standing of a data set we can use this function.
  • For example, a test score that is greater than or equal to 50% of the scores of people taking the test is said to be at the 50th percentile rank.
  • Percentile ranks are commonly used to clarify the interpretation of scores on standardized tests.
  • To find the percentile rank of a score is :

Where, L = Number of below rank, S = Number of same rank, N = Total numbers.

  • In PERCENTRANK(ar,x),ar is the array of numeric values and x is the value to find the rank. This function gives the result as error when array is empty .

Examples

  1. 3

4 1 2 1 PERCENTRANK(A1:A5,2)=0.5

  1. 7

6 2 5 9 1 PERCENTRANK(B1:B6,3)=0.267


See Also


References