-
-
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: Index name lost when using "resample" with pyarrow dtypes #61222
Comments
If it helps, I currently use this T = TypeVar("T", pd.DataFrame, pd.Series)
class IndexPreservingResampler(Generic[T]):
"""A resampler that preserves the index name of the input DataFrame or Series."""
def __init__(self, resampler: pd.core.resample.Resampler, idx_name: str | None) -> None:
self._resampler = resampler
self._index_name = idx_name
def __getattr__(self, name: str) -> Any:
method = getattr(self._resampler, name)
if not callable(method):
return method
def wrapped(*args: Any, **kwargs: Any) -> T:
result = method(*args, **kwargs)
if hasattr(result, "index"):
result.index.name = self._index_name
return result
return wrapped
def safe_resample(
df: T,
freq: str,
**kwargs: Any,
) -> IndexPreservingResampler[T]:
"""Resample a DataFrame or Series while preserving the index name.
When using pyarrow dtypes, the index name is lost after resampling.
This is a temporary fix to preserve the index name.
See https://github.com/pandas-dev/pandas/issues/61222
Args:
df: The DataFrame or Series to resample
freq: The frequency to resample to
**kwargs: Additional arguments to pass to pandas resample method
Returns:
A Resampler object that will preserve the index name after aggregation
"""
index_name = df.index.name
return IndexPreservingResampler(df.resample(freq, **kwargs), index_name) Using it in practice: pyarrow_df.resample("2h").mean().reset_index()["timestamp"] # KeyError: 'timestamp'
safe_resample(pyarrow_df, "2h").mean().reset_index()["timestamp"] # OK |
5 tasks
Thanks for reporting. Confirmed on main. PRs to fix are welcome. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
The
resample
forget the name of the index when usingpyarrow
dtypes.By the way, I notice that
DatetimeIndex
are converted toIndex
when usingpyarrow
dtypes. Maybe it is related?See concrete example in screenshot

Expected Behavior
The
resample
methods is expected to behave in the same way forpyarrow
andnative
dtypes.Installed Versions
INSTALLED VERSIONS
python : 3.12.8
python-bits : 64
OS : Linux
OS-release : 5.10.234-225.910.amzn2.x86_64
Version : #1 SMP Fri Feb 14 16:52:40 UTC 2025
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : C.UTF-8
LANG : C.UTF-8
LOCALE : C.UTF-8
pandas : 2.2.3
numpy : 1.26.4
pytz : 2025.1
dateutil : 2.9.0.post0
pip : 25.0.1
Cython : None
sphinx : None
IPython : 8.32.0
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : 4.13.3
blosc : None
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : 2025.3.2
html5lib : None
hypothesis : None
gcsfs : None
jinja2 : 3.1.5
lxml.etree : None
matplotlib : 3.10.1
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
psycopg2 : None
pymysql : None
pyarrow : 19.0.1
pyreadstat : None
pytest : None
python-calamine : None
pyxlsb : None
s3fs : 2025.3.2
scipy : 1.15.2
sqlalchemy : 2.0.38
tables : None
tabulate : None
xarray : None
xlrd : None
xlsxwriter : None
zstandard : 0.23.0
tzdata : 2025.2
qtpy : None
pyqt5 : None
The text was updated successfully, but these errors were encountered: