Skip to content

Commit f163f25

Browse files
authored
DOC: Update pandas.Series.between_time docstring params (#32014)
1 parent 10228cb commit f163f25

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/core/generic.py

+6
Original file line numberDiff line numberDiff line change
@@ -7551,16 +7551,22 @@ def between_time(
75517551
Parameters
75527552
----------
75537553
start_time : datetime.time or str
7554+
Initial time as a time filter limit.
75547555
end_time : datetime.time or str
7556+
End time as a time filter limit.
75557557
include_start : bool, default True
7558+
Whether the start time needs to be included in the result.
75567559
include_end : bool, default True
7560+
Whether the end time needs to be included in the result.
75577561
axis : {0 or 'index', 1 or 'columns'}, default 0
7562+
Determine range time on index or columns value.
75587563
75597564
.. versionadded:: 0.24.0
75607565
75617566
Returns
75627567
-------
75637568
Series or DataFrame
7569+
Data from the original object filtered to the specified dates range.
75647570
75657571
Raises
75667572
------

0 commit comments

Comments
 (0)