eg a.sum_by(x.age) which should be equivalent to ```python a.sum(a.axes - x.age) ``` (which does not work, because aggregate functions do not support an AxisCollection argument) but this works: ```python a.sum(*(a.axes - x.age)) ```