Pandas Interpolate Does not Handle Empty Values at Front of Series #10420
Labels
API Design
Missing-data
np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate
Numeric Operations
Arithmetic, Comparison, and Logical operations
Milestone
This code means the interpolator won't handle extrapolating to the front of the Series even though the underlying implementations may have no problem with the extrapolation.
See for example
UnivariateSpline
whose default behavior is extrapolation.Interpolation works fine at the end of the Series.
For example:
but:
The text was updated successfully, but these errors were encountered: