Returns the median value from a set of numbers.
Sample usage
MEDIAN(Page Views)
Syntax
MEDIAN( X )
Parameters
X- a numeric field or expression.
Notes
Xcannot be an aggregated field or the result of an aggregation function.MEDIANreturns the center value ifXcontains an odd number of values. IfXcontains an even number of values,MEDIANwill interpolate between the two center values.
Examples
| Example formula | Input | Output |
|---|---|---|
MEDIAN(Page Views) |
|
95 |
MEDIAN(Page Views) |
|
97.5 |
Notes
For BigQuery data sources, MEDIAN is implemented using the BigQuery APPROX_QUANTILES function. Applying MEDIAN to data coming from BigQuery may return slightly different results than applying MEDIAN to the same data coming from other data source types.