Oracle® OLAP DML Reference 10g Release 2 (10.2) Part Number B14346-02 |
|
|
View PDF |
The MEDIAN function calculates the median of the values of an expression. The median is the middle number in a given sequence of numbers.
Return Value
DECIMAL
Syntax
MEDIAN(expression [dimension...])
Arguments
The expression whose median value is to be calculated.
The name of a dimension of the result; or, the name of a relation between one of the dimensions of expression and another dimension that you want as a dimension of the result.
By default, MEDIAN returns a single value. When you indicate one or more dimensions for the result, MEDIAN calculates values along the dimensions that are specified and returns an array of values. Each dimension must be either a dimension of expression or related to one of its dimensions.
Tip:
When you specify a dimension that is not an actual dimension of expression, but, instead, is dimension that is related to a dimension of expression and when there is more than one relation between the two dimensions, Oracle OLAP uses the default relation between the dimensions to perform the calculation. (See the RELATION command for more information on default relations.) When you do not want Oracle OLAP to use this default relation, specify the related dimension by specifying the name of a specify relation.Notes
NA Values and MEDIAN
MEDIAN is affected by the NASKIP option in the same manner as other aggregate functions. When NASKIP is set to YES
(the default), MEDIAN ignores NA
values and returns the median of the values that are not NA
. When NASKIP is set to NO
, MEDIAN returns NA
when any value of the expression is NA
. When all the values of the expression are NA
, MEDIAN returns NA
for either setting of NASKIP.
Examples
Example 19-3 Calculating Median Monthly Sales
This example shows how to calculate the median monthly sales of sportswear for each sales district.
LIMIT product TO 'Sportswear' REPORT W 12 HEADING 'Median Sales' MEDIAN(sales district)
The preceding statements produce the following output.
DISTRICT Median Sales ----------------- ------------ Boston 67,923.05 Atlanta 152,186.52 Chicago 94,372.06 Dallas 160,854.60 Denver 86,745.40 Seattle 53,950.28