tailBy
tailBy
returns the last n
rows for each group.
Syntax
table.tailBy(nRows, groupByColumnNames...)
Parameters
Parameter | Type | Description |
---|---|---|
nRows | long | The number of rows to return for each group. |
groupByColumnNames | String... | The column(s) by which to group data.
|
groupByColumnNames | Collection<String> | The column(s) by which to group data.
|
Returns
A new table containing the last n
rows for each group.
Examples
In this example, tailBy
returns the last 2 rows, as grouped by X
.
source = newTable(
stringCol("X", "A", "B", "A", "A", "B", "A", "B", "B", "B"),
stringCol("Y", "M", "M", "M", "N", "M", "M", "M", "M", "M"),
intCol("Number", 55, 76, 20, 130, 230, 50, 73, 137, 214),
)
result = source.tailBy(2, "X")
- source
- result
In this example, tailBy
returns the last 2 rows, as grouped by X
and Y
.
source = newTable(
stringCol("X", "A", "B", "A", "A", "B", "A", "B", "B", "B"),
stringCol("Y", "M", "M", "M", "N", "M", "M", "M", "M", "M"),
intCol("Number", 55, 76, 20, 130, 230, 50, 73, 137, 214),
)
result = source.tailBy(2, "X", "Y")
- source
- result