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