Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.TimedeltaIndex.slice_indexer

TimedeltaIndex.slice_indexer(start=None, end=None, step=None, kind=None)[source]

For an ordered Index, compute the slice indexer for input labels and step

Parameters:

start : label, default None

If None, defaults to the beginning

end : label, default None

If None, defaults to the end

step : int, default None

kind : string, default None

Returns:

indexer : ndarray or slice

Notes

This function assumes that the data is sorted, so use at your own peril

Scroll To Top