Skip to content
Closed
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
4 changes: 4 additions & 0 deletions pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ def iloc(self) -> _iLocIndexer:
out-of-bounds, except *slice* indexers which allow out-of-bounds
indexing (this conforms with python/numpy *slice* semantics).

It is also worth noting, iloc converts all elements returned into the same
pandas dtype and all numeric dtype conversions follow the numpy promotion
rules.

See more at :ref:`Selection by Position <indexing.integer>`.

See Also
Expand Down
Loading