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 161b4c7 commit af12a53Copy full SHA for af12a53
pandas/core/arrays/base.py
@@ -1064,6 +1064,7 @@ def interpolate(
1064
>>> arr = pd.arrays.NumpyExtensionArray(np.array([0, 1, np.nan, 3]))
1065
>>> arr.interpolate(
1066
... method="linear",
1067
+<<<<<<< HEAD
1068
... limit=3,
1069
... limit_direction="forward",
1070
... index=pd.Index(range(len(arr))),
@@ -1085,6 +1086,12 @@ def interpolate(
1085
1086
1087
... limit=None,
1088
... limit_direction="both",
1089
+=======
1090
+ ... axis=0,
1091
+ ... index=pd.Index(range(len(arr))),
1092
+ ... limit=None,
1093
+ ... limit_direction="forward",
1094
+>>>>>>> 448a75d129 (Resolved ruff formatting error)
1095
... limit_area=None,
1096
... copy=True,
1097
... )
0 commit comments