medianBy
medianBy returns the median value for each group. Null values are ignored.
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| groupByColumns | String... | The column(s) by which to group data.
|
| groupByColumns | ColumnName... | The column(s) by which to group data.
|
| groupByColumns | Collection<String> | The column(s) by which to group data.
|
Returns
A new table containing the median value for each group.
Examples
In this example, medianBy returns the median value for each column.
In this example, medianBy returns the median value, as grouped by X.
In this example, medianBy returns the median value, as grouped by X and Y.