From ac4a5a15a92636ef6504b491ec981d6aa2b27f32 Mon Sep 17 00:00:00 2001 From: akosel Date: Wed, 14 Mar 2018 18:57:55 +0000 Subject: [PATCH] DOC: fix typo in Dataframe.loc[] docstring --- pandas/core/indexing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index 39b8aa635f35e..9736bba78ab72 100755 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -1439,8 +1439,8 @@ class _LocIndexer(_LocationIndexer): See Also -------- - DateFrame.at : Access a single value for a row/column label pair - DateFrame.iloc : Access group of rows and columns by integer position(s) + DataFrame.at : Access a single value for a row/column label pair + DataFrame.iloc : Access group of rows and columns by integer position(s) DataFrame.xs : Returns a cross-section (row(s) or column(s)) from the Series/DataFrame. Series.loc : Access group of values using labels