We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80d9bf commit 5da848bCopy full SHA for 5da848b
pandas/core/generic.py
@@ -7801,6 +7801,7 @@ def interpolate(
7801
1 1.0 2.0 -2.0 5.0
7802
2 2.0 3.0 -3.0 9.0
7803
3 2.0 4.0 -4.0 16.0
7804
+
7805
Using polynomial interpolation.
7806
7807
>>> df["d"].interpolate(method="polynomial", order=2)
@@ -7809,7 +7810,6 @@ def interpolate(
7809
7810
2 9.0
7811
3 16.0
7812
Name: d, dtype: float64
-
7813
Using index method for linear interpolation
7814
with non-sequential index.
7815
>>> data_non_seq = {"val": [1, np.nan, 3]}
0 commit comments