Skip to main content
Version: 0.9.5

Aggregation

Expr.countAggregation operation that counts the non null values of the given column in the group.
Expr.firstGet the first element.
Expr.lastGet the last element.
Expr.lenAggregation operation that counts the rows in the group.
Expr.maxAggregation operation that finds the maximum value in the group.
Expr.meanAggregation operation that finds the mean of the values in the group.
Expr.medianAggregation operation that finds the median of the values in the group.
Expr.minAggregation operation that finds the minimum value in the group.
Expr.n_uniqueAggregation operation that counts the unique values of the given column in the group.
Expr.rankCompute the rank of the element values.
Expr.sumAggregation operation that sums the values in the group.
TableFrame.group_byPerform a group by on the TableFrame.