Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/source/indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ Object selection has had a number of user-requested additions in order to
support more explicit location based indexing. pandas now supports three types
of multi-axis indexing.

- ``.loc`` is strictly label based, will raise ``KeyError`` when the items are
not found, allowed inputs are:
- ``.loc`` is primarily label based, but may also be used with a boolean array. ``.loc`` will raise ``KeyError`` when the items are not found. Allowed inputs are:

- A single label, e.g. ``5`` or ``'a'``, (note that ``5`` is interpreted as a
*label* of the index. This use is **not** an integer position along the
Expand Down