From c0a3b2dcdc13af5b5282412d648e075b68b16776 Mon Sep 17 00:00:00 2001 From: bicarlsen Date: Mon, 14 Feb 2022 22:35:13 +0100 Subject: [PATCH 1/2] Removed broken link from NDFrame#interpolate docs. The link at https://docs.scipy.org/doc/scipy/reference/tutorial/interpolate.html pointing to the SciPy Interpolation tutorial is broken. An alternative tutorial was not found in the new documentation. --- pandas/core/generic.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index b329f4fb00ccc..9f58ab0d0cbca 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -6870,10 +6870,8 @@ def interpolate( similar names. These use the actual numerical values of the index. For more information on their behavior, see the `SciPy documentation - `__ - and `SciPy tutorial - `__. - + `__. + Examples -------- Filling in ``NaN`` in a :class:`~pandas.Series` via linear From 8ad066ad99984f514a32895657e269f2877f4820 Mon Sep 17 00:00:00 2001 From: bicarlsen Date: Tue, 15 Feb 2022 08:47:24 +0100 Subject: [PATCH 2/2] Fixed whitespace formatting. --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 9f58ab0d0cbca..bd5a114769cfb 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -6871,7 +6871,7 @@ def interpolate( For more information on their behavior, see the `SciPy documentation `__. - + Examples -------- Filling in ``NaN`` in a :class:`~pandas.Series` via linear