BUG: When upsampling an empty dataframe, the index type changes from DatetimeIndex to MultiIndex #55572
Closed
3 tasks done
Labels
Milestone
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
When upsampling an empty dataframe, the index type changes from
DatetimeIndex
toMultiIndex
.This applies to all the upsampling methods, i.e.
resample
followed byfillna
,ffill
,bfill
,nearest
,asfreq
, orinterpolate
.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 aMultiIndex
.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
The text was updated successfully, but these errors were encountered: