From d707bf40b6e49867f2fad63de6e011e6722e885f Mon Sep 17 00:00:00 2001 From: Ammar Qazi Date: Sat, 14 Sep 2024 15:26:04 +0200 Subject: [PATCH] Update ExtensionArray.interpolate to remove outdated method of pad --- pandas/core/arrays/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pandas/core/arrays/base.py b/pandas/core/arrays/base.py index a933a9ce11646..5f2c2a7772f78 100644 --- a/pandas/core/arrays/base.py +++ b/pandas/core/arrays/base.py @@ -1010,7 +1010,6 @@ def interpolate( * 'time': Works on daily and higher resolution data to interpolate given length of interval. * 'index', 'values': use the actual numerical values of the index. - * 'pad': Fill in NaNs using existing values. * 'nearest', 'zero', 'slinear', 'quadratic', 'cubic', 'barycentric', 'polynomial': Passed to scipy.interpolate.interp1d, whereas 'spline' is passed to scipy.interpolate.UnivariateSpline. These methods use