pub trait PhysicalAggExpr {
// Required methods
fn evaluate(
&self,
df: &DataFrame,
groups: &GroupsProxy,
) -> PolarsResult<Series>;
fn root_name(&self) -> PolarsResult<&PlSmallStr>;
}
Available on crate feature
algorithm_group_by
only.