Series.searchsorted()
pandas.Series.searchsorted
-
Series.searchsorted(v, side='left', sorter=None)
-
Find indices where elements should be inserted to maintain order.
Find the indices into a sorted Series
self
such that, if the corresponding elements inv
were inserted before the indices, the order ofself
would be preserved.Parameters: v : array_like
Values to insert into
self
.side : {‘left’, ‘right’}, optional
If ‘left’, the index of the first suitable location found is given. If ‘right’, return the last such index. If there is no suitable index, return eith