You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When pd.to_numeric(<series>) is called on a series with a non-default index, that index is preserved. When cudf.to_numeric is used on the same data, the original index is replaced with a default RangeIndex
Expected behavior
I would not expect cudf.to_numeric to modify the index of the original Series at all. Even if the original index is non-numeric, it should be preserved.
The text was updated successfully, but these errors were encountered:
Describe the bug
When
pd.to_numeric(<series>)
is called on a series with a non-default index, that index is preserved. Whencudf.to_numeric
is used on the same data, the original index is replaced with a defaultRangeIndex
Steps/Code to reproduce bug
Expected behavior
I would not expect
cudf.to_numeric
to modify the index of the originalSeries
at all. Even if the original index is non-numeric, it should be preserved.The text was updated successfully, but these errors were encountered: