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
Series.rename(None)
None
Describe the bug Series.rename(None) does not rename existing name to None
Steps/Code to reproduce bug
In [1]: from cudf import * In [2]: ser = Series([1, 2], name="foo") In [3]: ser.rename(None) Out[3]: 0 1 1 2 Name: foo, dtype: int64 In [8]: ser.to_pandas().rename(None) Out[8]: 0 1 1 2 dtype: int64
Expected behavior
In [3]: ser.rename(None) Out[3]: 0 1 1 2 dtype: int64
The default index=None probably needs to be change to a no default sentinel.
index=None
Environment overview (please complete the following information)
docker pull
docker run
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.
The text was updated successfully, but these errors were encountered:
Series
Index
galipremsagar
Successfully merging a pull request may close this issue.
Describe the bug
Series.rename(None)
does not rename existing name toNone
Steps/Code to reproduce bug
Expected behavior
The default
index=None
probably needs to be change to a no default sentinel.Environment overview (please complete the following information)
docker pull
&docker run
commands usedEnvironment 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.
The text was updated successfully, but these errors were encountered: