We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
lithomas1
No branches or pull requests
For example,
groupby.sum
can return anint64
output given anint64
inputTo enable this for our numba aggregations, I think we would need to specify specific signatures.
The text was updated successfully, but these errors were encountered: