Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mthiboust
Copy link

@mthiboust mthiboust commented Apr 3, 2025

@mthiboust mthiboust force-pushed the fix-issue-61222 branch 2 times, most recently from 066ec11 to f79ef8a Compare April 4, 2025 09:04
@@ -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`)
Copy link
Member

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?

Comment on lines +520 to +522
obj = self.obj
result.index = result.index.astype(self._timegrouper._arrow_dtype)
result.index.name = getattr(obj.index, "name", None)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
assert result.index.name == expected.index.name
tm.assert_series_equal(result, expected)

@mroeschke mroeschke added Resample resample method Arrow pyarrow functionality labels Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Arrow pyarrow functionality Resample resample method
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: Index name lost when using "resample" with pyarrow dtypes
2 participants