-
Notifications
You must be signed in to change notification settings - Fork 915
New issue
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
[FEA] Implement basic reductions for decimal columns #7503
Comments
I can't reproduce this error. I get this error on can you give details on your environment? Following code recreated the error in branch-0.19.
|
@codereport added decimal type reduction in libcudf. Python interface might be needed to utilize this. |
My apologies that astype call uses a PR that hasn't been merged yet. I'll edit the original post to your code |
Correct. sum reductions are implemented, but don't have Python bindings yet. We only support a few binary operations atm. |
This issue has been labeled |
Closed with #7776 |
Is your feature request related to a problem? Please describe.
I wish to be able to perform basic reductions like
.sum()
,.mean()
, or.std()
on DataFrames and Series withdecimal
columns.Describe the solution you'd like
I would like to mimic the reductions available for
float
columns. For example:returns
but if the dataframe contains a
decimal
columnit returns
The same error is returned for other basic reductions like
.mean()
and.std()
as well.The text was updated successfully, but these errors were encountered: