last_by
last_by returns the last row for each group.
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| by optional | Union[str, list[str]] | The column(s) by which to group data.
|
Returns
A new table containing the last row for each group.
Examples
In this example, last_by returns the last row of the table.
In this example, last_by returns the last row, as grouped by X.
In this example, last_by returns the last row, as grouped by X and Y.