Skip to content

Commit 5bb315b

Browse files
sameshljreback
authored andcommitted
DOC: Series.between() can take arguments that are Series, not just scalars (pandas-dev#28717)
modified the docs of Series.between() to reflect that it can take any list like object closes pandas-dev#28435
1 parent f452a69 commit 5bb315b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/series.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4407,9 +4407,9 @@ def between(self, left, right, inclusive=True):
44074407
44084408
Parameters
44094409
----------
4410-
left : scalar
4410+
left : scalar or list-like
44114411
Left boundary.
4412-
right : scalar
4412+
right : scalar or list-like
44134413
Right boundary.
44144414
inclusive : bool, default True
44154415
Include boundaries.

0 commit comments

Comments
 (0)