From fdb5cf19d005c3ebe6107349047055fa7aef1002 Mon Sep 17 00:00:00 2001 From: Laura <35954013+LauraCollard@users.noreply.github.com> Date: Tue, 1 Oct 2019 14:25:50 +0100 Subject: [PATCH] DOC: Fixed PR06 docstring errors in pandas.DataFrame --- pandas/core/frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 16f34fee5e1ff..9467978f13d30 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -7948,7 +7948,7 @@ def idxmin(self, axis=0, skipna=True): ---------- axis : {0 or 'index', 1 or 'columns'}, default 0 The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise - skipna : boolean, default True + skipna : bool, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA. @@ -7985,7 +7985,7 @@ def idxmax(self, axis=0, skipna=True): ---------- axis : {0 or 'index', 1 or 'columns'}, default 0 The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise - skipna : boolean, default True + skipna : bool, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA.