You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the forward and backward filling methods are duplicated for Resampler objects (e.g., bfill is an alias for backfill, and ffill is an alias for pad). Does it make sense to deprecate backfill and pad in favor of the bfill and ffill, as these names are more consistent with other methods in pandas (e.g., DataFrame.ffill)?
The text was updated successfully, but these errors were encountered:
It looks like pad / backfill were deprecated in groupby / Resampler, but not Series / DataFrame. I'm guessing it's desired to remove them in Series / DataFrame too? If that's the case, I'm wondering if we should deprecate them in Series / DataFrame in 2.x, leave them in groupby / Resampler (still deprecated), and remove everything altogether.
It seems the forward and backward filling methods are duplicated for Resampler objects (e.g., bfill is an alias for backfill, and ffill is an alias for pad). Does it make sense to deprecate backfill and pad in favor of the bfill and ffill, as these names are more consistent with other methods in pandas (e.g., DataFrame.ffill)?
The text was updated successfully, but these errors were encountered: