min_by
min_by returns the minimum value for each group. Null values are ignored.
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| by | Union[str, list[str]] | The column(s) by which to group data.
|
Returns
A new table containing the minimum value for each group.
Examples
In this example, min_by returns the minimum value for each column.
In this example, min_by returns the minimum value, as grouped by X.
In this example, min_by returns the minimum value, as grouped by X and Y.