-
DatetimeIndex.slice_indexer(start=None, end=None, step=None, kind=None)
[source] -
Return indexer for specified label slice. Index.slice_indexer, customized to handle time slicing.
In addition to functionality provided by Index.slice_indexer, does the following:
- if both
start
andend
are instances ofdatetime.time
, it invokesindexer_between_time
- if
start
andend
are both either string or None perform value-based selection in non-monotonic cases.
- if both
DatetimeIndex.slice_indexer()
2017-01-12 04:47:48
Please login to continue.