Skip to content
Snippets Groups Projects
Commit bef82d54 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

save

parent 2207db3f
No related branches found
No related tags found
No related merge requests found
......@@ -545,7 +545,7 @@ class _DiosBase:
@property
def loc(self):
""" Location Indexer.
""" Access a group of rows and columns by label(s) or a boolean array.
See :ref:`indexing docs <doc_indexing:Pandas-like indexing>`
"""
......@@ -553,18 +553,34 @@ class _DiosBase:
@property
def iloc(self):
""" Purely integer-location based indexing for selection by position.
See :ref:`indexing docs <doc_indexing:Pandas-like indexing>`
"""
return _iLocIndexer(self)
@property
def aloc(self):
""" Access a group of rows and columns by label(s) or a boolean array with automatic alignment of indexers.
See :ref:`indexing docs <doc_indexing:Special indexer .aloc>`
"""
return _aLocIndexer(self)
@property
def at(self):
""" Access a single value for a row/column label pair.
See :ref:`indexing docs <doc_indexing:Pandas-like indexing>`
"""
return _AtIndexer(self)
@property
def iat(self):
""" Access a single value for a row/column pair by integer position.
See :ref:`indexing docs <doc_indexing:Pandas-like indexing>`
"""
return _iAtIndexer(self)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment