Difference between revisions of "Documentation/How Tos/Calc: QUARTILE function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
m |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | __NOTOC__ | + | {{DISPLAYTITLE:QUARTILE function}} |
| + | {{Documentation/CalcFunc StatisticalTOC | ||
| + | |ShowPrevNext=block | ||
| + | |PrevPage=Documentation/How_Tos/Calc:_PERCENTRANK_function | ||
| + | |NextPage=Documentation/How_Tos/Calc:_RANK_function | ||
| + | }}__NOTOC__ | ||
== QUARTILE == | == QUARTILE == | ||
| Line 23: | Line 28: | ||
: returns <tt>'''6'''</tt>. The calculation is the same as for <tt>'''PERCENTILE({9; 3; 7; 8}; 0.25)'''</tt>. | : returns <tt>'''6'''</tt>. The calculation is the same as for <tt>'''PERCENTILE({9; 3; 7; 8}; 0.25)'''</tt>. | ||
| − | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: PERCENTILE function|PERCENTILE]] | * [[Documentation/How_Tos/Calc: PERCENTILE function|PERCENTILE]] | ||
* [[Documentation/How_Tos/Calc: PERCENTRANK function|PERCENTRANK]] | * [[Documentation/How_Tos/Calc: PERCENTRANK function|PERCENTRANK]] | ||
Latest revision as of 14:54, 2 February 2024
Spreadsheet Lookup functions
Measures of dispersion / spread
Probability and statistics
Correlation and line fitting
See also (in the Arrays Functions category); GROWTH, LINEST, LOGEST, TREND
Ranking
QUARTILE
Returns a specified quartile in a list of numbers.
Syntax:
QUARTILE(numberlist; q)
- QUARTILE returns the value below which q quarters of the numbers in numberlist lie. q may be 0 (to return the minimum value), 1 (to return the value below which a quarter of values lie), 2 (to return the median value), 3 (to return the value below which three quarters of values lie) or 4 (to return the maximum value). numberlist is a range or array of numbers, not necessarily in order.
- QUARTILE calculates a return value in the same way as PERCENTILE
Example:
QUARTILE(A2:A99; 3)
- where cells A2:A99 contain scores from a test, returns the score below which 75% of the scores lie.
The next two examples illustrate the calculation, but are not intended to show practical application:
QUARTILE({3; 4; 9; 11; 12}; 2)
- returns 9, the median value of the list.
QUARTILE({9; 3; 7; 8}; 1)
- returns 6. The calculation is the same as for PERCENTILE({9; 3; 7; 8}; 0.25).
See Also