Difference between revisions of "Manuals/calci/PERCENTILE"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''PERCENTILE'''(Array, k) where, '''Array''' - is the set of data. '''k''' - represents the percentile in...")
 
Line 1: Line 1:
<div id="6SpaceContent" class="zcontent" align="left">
+
<div style="font-size:30px">''' PERCENTILE(ar,k) '''</div><br/>
 +
*<math>ar</math>  is the array of data
 +
*<math> k </math> is the Percentile
  
'''PERCENTILE'''(Array, k)
+
==Description==
 +
*This function gives the k-th percentile value in a given range.
 +
*Percentile means any of the 100 equal parts into which the range of the values of a set of data can be divided in order to show the distribution of those values.
 +
*The percentile of a given value is determined by the percentage of the values that are smaller than that value.
 +
*For example we can the 25th percentile is the value  below which 25 percent of the observations may be found.
 +
*The 25th percentile is called  as the first quartile (Q1), the 50th percentile as the median  quartile (Q2), and the 75th percentile as the third quartile (Q3).
 +
*In general, percentiles and quartiles are specific types of quantiles.
 +
*In <math>PERCENTILE(ar,k), ar </math> is the array of data that indicating relative standing and <math>k </math> is the Percentile value in the range 0..1(inclusive).
 +
*This function will return the result as error when
 +
1. The array value is empty.
 +
2. k is nonnumeric or k<0 or k>1.
  
where,
+
==Examples==
 +
#5
 +
7
 +
2
 +
9
 +
PERCENTILE(C1:C4,0.4)=5.4
 +
#15
 +
20
 +
12
 +
41
 +
35
 +
PERCENTILE(D1:D5,0.721)=33.26
 +
#2
 +
3
 +
4
 +
PERCENTILE(A1:A3,1.1)=NAN
  
'''Array''' - is the set of data.
+
==See Also==
 +
*[[Manuals/calci/MAX  | MAX ]]
 +
*[[Manuals/calci/MIN  | MIN ]]
 +
*[[Manuals/calci/MEDIAN  | MEDIAN]]
 +
*[[Manuals/calci/QUARTILE  | QUARTILE ]]
  
'''k''' - represents the percentile in between 0 and 1 inclusive.
+
==References==
  
</div>
+
* [ http://en.wikipedia.org/wiki/Percentile Percentile ]
----
 
<div id="1SpaceContent" class="zcontent" align="left">Returns thethe k-th percentile of value from set of data.</div>
 
----
 
<div id="7SpaceContent" class="zcontent" align="left">
 
 
 
If k is nonnumeric, PERCENTILE returns #ERROR.
 
 
 
If k&lt; 0 or k &gt; 1, it returns #ERROR.
 
 
 
</div>
 
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
 
 
PERCENTILE
 
 
 
</div></div>
 
----
 
<div id="8SpaceContent" class="zcontent" align="left">
 
 
 
Lets see an example in (Column1, Row5)
 
 
 
<nowiki>=PERCENTILE(R1C1:R4C1,0.8)</nowiki>
 
 
 
PERCENTILE returns 80-th of given array is 15.8.
 
 
 
</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
 
| Column2
 
| Column3
 
| Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class=" " | 11
 
|
 
|
 
|
 
|- class="even"
 
| class=" " | Row2
 
| class=" " | 23
 
|
 
|
 
|
 
|- class="odd"
 
| Row3
 
| class="sshl_f" | 1
 
|
 
|
 
|
 
|- class="even"
 
| Row4
 
| class="    " | 5
 
|
 
|
 
|
 
|- class="odd"
 
| class=" " | Row5
 
| class="sshl_f" | 15.8
 
|
 
|
 
|
 
|- class="even"
 
| Row6
 
| 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>
 
|
 
|
 
|
 
|}
 
 
 
<div align="left">[[Image:calci1.gif]]</div></div>
 
----
 

Revision as of 00:55, 6 January 2014

PERCENTILE(ar,k)


  • is the array of data
  • is the Percentile

Description

  • This function gives the k-th percentile value in a given range.
  • Percentile means any of the 100 equal parts into which the range of the values of a set of data can be divided in order to show the distribution of those values.
  • The percentile of a given value is determined by the percentage of the values that are smaller than that value.
  • For example we can the 25th percentile is the value below which 25 percent of the observations may be found.
  • The 25th percentile is called as the first quartile (Q1), the 50th percentile as the median quartile (Q2), and the 75th percentile as the third quartile (Q3).
  • In general, percentiles and quartiles are specific types of quantiles.
  • In is the array of data that indicating relative standing and is the Percentile value in the range 0..1(inclusive).
  • This function will return the result as error when
1. The array value is empty.
2. k is nonnumeric or k<0 or k>1.

Examples

  1. 5

7 2 9 PERCENTILE(C1:C4,0.4)=5.4

  1. 15

20 12 41 35 PERCENTILE(D1:D5,0.721)=33.26

  1. 2

3 4 PERCENTILE(A1:A3,1.1)=NAN

See Also

References