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
Describe the bug Incorrect results
Steps/Code to reproduce bug
%%writefile t.py import pandas as pd df = pd.DataFrame({'a': [1, 2, None, 3], 'b': ['x']*4}) print(df.groupby('b')['a'].cumprod())
Then run
!python t.py
and
!python -m cudf.pandas t.py
Expected behavior
0 1.0 1 2.0 2 NaN 3 6.0 Name: a, dtype: float64
got
0 1.0 1 2.0 2 NaN 3 NaN Name: a, dtype: float64
Environment overview (please complete the following information)
docker pull
docker run
cudf version: '25.02.00a360'
Environment details Please run and paste the output of the cudf/print_env.sh script here, to gather any other relevant environment details
cudf/print_env.sh
Additional context Add any other context about the problem here.
spotted in Narwhals
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Incorrect results
Steps/Code to reproduce bug
Then run
and
Expected behavior
got
Environment overview (please complete the following information)
docker pull
&docker run
commands usedcudf version: '25.02.00a360'
Environment details
Please run and paste the output of the
cudf/print_env.sh
script here, to gather any other relevant environment detailsAdditional context
Add any other context about the problem here.
spotted in Narwhals
The text was updated successfully, but these errors were encountered: