AggSortedFirst
AggSortedFirst
returns an aggregator that sorts a table in ascending order and then computes the first value, within an aggregation group, for each input column.
Syntax
AggSortedFirst(sortColumn, pairs...)
AggSortedFirst(sortColumns, pairs...)
Parameters
Parameter | Type | Description |
---|---|---|
sortColumn | String | The column to sort by. |
pairs | pairs... | The input/output column name pairs.
|
sortColumns | Collection<? extends String> | The sort column names. |
If an aggregation does not rename the resulting column, the aggregation column will appear in the output table, not the input column. If multiple aggregations on the same column do not rename the resulting columns, an error will result, because the aggregations are trying to create multiple columns with the same name. For example, in table.aggBy([agg.AggSum(“X”), agg.AggAvg(“X”)])
, both the sum and the average aggregators produce column X
, which results in an error.
Returns
An aggregator that sorts the table in ascending order and then computes the first value, within an aggregation group, for each input column.
Examples
In this example, AggSortedFirst
returns the first Y
value as sorted by Z
and grouped by X
.
import static io.deephaven.api.agg.Aggregation.AggSortedFirst
source = newTable(
stringCol("X", "A", "B", "A", "C", "B", "A", "B", "B", "C"),
stringCol("Y", "N", "O", "P", "N", "P", "N", "", "Q", "O"),
intCol("Z", 3, 2, 1, 1, 3, 1, 4, 1, 2),
)
result = source.aggBy([AggSortedFirst("Z", "Y")], "X")
- source
- result
In this example, AggSortedFirst
returns the first Y
value (renamed to Z
), as sorted by Z
and grouped by X
.
import static io.deephaven.api.agg.Aggregation.AggSortedFirst
source = newTable(
stringCol("X", "A", "B", "A", "C", "B", "A", "B", "B", "C"),
stringCol("Y", "N", "O", "P", "N", "P", "N", "", "Q", "O"),
intCol("Z", 3, 2, 1, 1, 3, 1, 4, 1, 2),
)
result = source.aggBy([AggSortedFirst("Z", "Z = Y")], "X")
- source
- result
In this example, AggSortedFirst
returns the first Y
string and first Z
integer, as sorted by Z
and grouped by X
.
import static io.deephaven.api.agg.Aggregation.AggSortedFirst
source = newTable(
stringCol("X", "A", "B", "A", "C", "B", "A", "B", "B", "C"),
stringCol("Y", "N", "O", "P", "N", "P", "N", "", "Q", "O"),
intCol("Z", 3, 1, 2, 3, 1, 2, 4, 1, 2),
)
result = source.aggBy([AggSortedFirst("Z", "Y", "Z")], "X")
- source
- result
In this example, AggSortedFirst
returns the first Z
integer, as sorted by Z
and grouped by X
and Y
.
import static io.deephaven.api.agg.Aggregation.AggSortedFirst
source = newTable(
stringCol("X", "A", "B", "A", "C", "B", "A", "B", "B", "C"),
stringCol("Y", "N", "O", "P", "N", "P", "N", "", "Q", "O"),
intCol("Z", 3, 2, 1, 1, 3, 1, 4, 1, 2),
)
result = source.aggBy([AggSortedFirst("Z", "Z")], "X", "Y")
- source
- result
In this example, AggSortedFirst
returns the first Y
string, and AggMax
returns the maximum Z
integer, as sorted by Z
and grouped by X
.
import static io.deephaven.api.agg.Aggregation.AggSortedFirst
import static io.deephaven.api.agg.Aggregation.AggMax
source = newTable(
stringCol("X", "A", "B", "A", "C", "B", "A", "B", "B", "C"),
stringCol("Y", "N", "O", "P", "N", "P", "N", "", "Q", "O"),
intCol("Z", 3, 2, 1, 1, 3, 1, 4, 1, 2),
)
result = source.aggBy([AggSortedFirst("Z", "SortedFirstY = Y"),AggMax("MaxZ = Z")], "X")
- source
- result