Get integer location, slice or boolean mask for requested label.
The key to check its location if it is present in the index.
Integer location, slice or boolean mask.
See also
Index.get_slice_bound
Calculate slice bound that corresponds to given label.
Index.get_indexer
Computes indexer and mask for new index given the current index.
Index.get_non_unique
Returns indexer and masks for new index given the current index.
Index.get_indexer_for
Returns an indexer even when non-unique.
Examples
>>> unique_index = pd.Index(list("abc")) >>> unique_index.get_loc("b") 1
>>> monotonic_index = pd.Index(list("abbc")) >>> monotonic_index.get_loc("b") slice(1, 3, None)
>>> non_monotonic_index = pd.Index(list("abcb")) >>> non_monotonic_index.get_loc("b") array([False, True, False, True])
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4