We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For example, groupby.sum can return an int64 output given an int64 input
groupby.sum
int64
In [2]: pd.DataFrame(range(2)).groupby(level=0).sum() Out[2]: 0 0 0 1 1
To enable this for our numba aggregations, I think we would need to specify specific signatures.