Aggregate
AggregateOp
Bases: PhysicalOperator
Aggregate operators accept a list of candidate DataRecords as input to their call methods. Thus, we use a slightly modified abstract base class for these operators.
ApplyGroupByOp
Bases: AggregateOp
Implementation of a GroupBy operator. This operator groups records by a set of fields and applies a function to each group. The group_by_sig object contains the fields to group by and the aggregation functions to apply to each group.
AverageAggregateOp
Bases: AggregateOp
CountAggregateOp
Bases: AggregateOp