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 A clear and concise description of what the bug is.
Steps/Code to reproduce bug Follow this guide http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly.
import cudf df = cudf.DataFrame({'a':[1,2,3,4,5],'b':[6,6,6,6,6]}) df.merge(df, on=['a'], suffixes=("", '_right')).merge(df, on=['a'], suffixes=("", '_right'))
produces
a b b_right 0 1 6 6 1 2 6 6 2 3 6 6 3 4 6 6 4 5 6 6
Expected behavior pandas does:
a b b_right b_right 0 1 6 6 6 1 2 6 6 6 2 3 6 6 6 3 4 6 6 6 4 5 6 6 6
If cuDF doesn't support duplicate column names, I'd expect it to raise
Environment overview (please complete the following information)
docker pull
docker run
cudf 24.12.00
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 another Narwhals one
The text was updated successfully, but these errors were encountered:
.merge(suffixes=)
df5c943
Successfully merging a pull request may close this issue.
Describe the bug
A clear and concise description of what the bug is.
Steps/Code to reproduce bug
Follow this guide http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly.
produces
Expected behavior
pandas does:
If cuDF doesn't support duplicate column names, I'd expect it to raise
Environment overview (please complete the following information)
docker pull
&docker run
commands usedcudf 24.12.00
Environment details
Please run and paste the output of the
cudf/print_env.sh
script here, to gather any other relevant environment detailsAdditional context
another Narwhals one
The text was updated successfully, but these errors were encountered: