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: When upsampling an empty dataframe, the index type changes from DatetimeIndex to MultiIndex #55572

Closed
3 tasks done
creid-hartree opened this issue Oct 18, 2023 · 2 comments · Fixed by #61174
Closed
3 tasks done
Assignees
Labels
Bug Regression Functionality that used to work in a prior pandas version Resample resample method
Milestone

Comments

@creid-hartree
Copy link

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

import pandas as pd
df = pd.DataFrame([], index=pd.DatetimeIndex([]))

# this returns a MultiIndex rather than a DatetimeIndex
df.resample("D").ffill().index

Issue Description

When upsampling an empty dataframe, the index type changes from DatetimeIndex to MultiIndex.

This applies to all the upsampling methods, i.e. resample followed by fillna, ffill, bfill, nearest, asfreq, or interpolate.

This only happens on empty dataframes or series, and only when upsampling (for example resample("D").mean() works as expected).

This regression was introduced in pandas 2.0.0

Expected Behavior

The resampled dataframe should have a DatetimeIndex rather than a MultiIndex.

Installed Versions

pandas : 2.1.1
numpy : 1.26.0
pytz : 2023.3.post1
dateutil : 2.8.2
setuptools : 68.2.2
pip : 23.3
tzdata : 2023.3

all others None

@creid-hartree creid-hartree added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Oct 18, 2023
@simonjayhawkins simonjayhawkins changed the title BUG: BUG: When upsampling an empty dataframe, the index type changes from DatetimeIndex to MultiIndex Oct 18, 2023
@simonjayhawkins simonjayhawkins added Regression Functionality that used to work in a prior pandas version Resample resample method labels Oct 18, 2023
@creid-hartree
Copy link
Author

Perhaps related to these two (fixed) issues:
#47705
#53664

@rhshadrach rhshadrach removed the Needs Triage Issue that has not been reviewed by a pandas team member label Oct 18, 2023
@rhshadrach rhshadrach added this to the 2.1.2 milestone Oct 18, 2023
@lithomas1 lithomas1 modified the milestones: 2.1.2, 2.1.3 Oct 26, 2023
@Charlie-XIAO
Copy link
Contributor

take

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment