-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
BUG: Fix #61222: Keep index name when resampling with pyarrow dtype #61229
base: main
Are you sure you want to change the base?
Conversation
066ec11
to
f79ef8a
Compare
f79ef8a
to
b9062c3
Compare
@@ -169,7 +169,7 @@ Groupby/resample/rolling | |||
|
|||
Reshaping | |||
^^^^^^^^^ | |||
- | |||
- :meth:`DataFrame.resample` was not keeping the index name when the index had :class:`pyarrow` datetime dtype (:issue:`61222`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move this to v3.0.0.rst
?
obj = self.obj | ||
result.index = result.index.astype(self._timegrouper._arrow_dtype) | ||
result.index.name = getattr(obj.index, "name", None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
obj = self.obj | |
result.index = result.index.astype(self._timegrouper._arrow_dtype) | |
result.index.name = getattr(obj.index, "name", None) | |
result.index = result.index.astype(self._timegrouper._arrow_dtype) | |
result.index.name = self.obj.index.name |
expected = Series(np.arange(5, dtype=np.float64), index=idx) | ||
expected.index.name = "index_name" | ||
result = expected.resample("1D").mean() | ||
assert result.index.name == expected.index.name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assert result.index.name == expected.index.name | |
tm.assert_series_equal(result, expected) |
doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.