Skip to content

Commit 1fa63dc

Browse files
committed
merging
1 parent c6720b0 commit 1fa63dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/core/common.py

+6
Original file line numberDiff line numberDiff line change
@@ -1718,6 +1718,7 @@ def _interpolate_scipy_wrapper(x, y, new_x, method, fill_value=None,
17181718
bounds_error=bounds_error)
17191719
new_y = terp(new_x)
17201720
elif method == 'spline':
1721+
<<<<<<< HEAD
17211722
<<<<<<< HEAD
17221723
# GH #10633
17231724
if not order:
@@ -1741,6 +1742,11 @@ def _interpolate_scipy_wrapper(x, y, new_x, method, fill_value=None,
17411742
raise ValueError("order needs to be specified and greater than 0")
17421743
>>>>>>> 5a5407e... updating examples and the bug fix
17431744
>>>>>>> BUG: 10633 and 10800 fix
1745+
=======
1746+
# GH #10633
1747+
if not order:
1748+
raise ValueError("order needs to be specified and greater than 0")
1749+
>>>>>>> BUG: 10633 - some last errors removed
17441750
terp = interpolate.UnivariateSpline(x, y, k=order, **kwargs)
17451751
new_y = terp(new_x)
17461752
else:

0 commit comments

Comments
 (0)