From c844016e850453ffed4a43591fcb4bd88465bfcf Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Wed, 19 Sep 2018 17:17:40 -0500 Subject: [PATCH] Reorders DataFrame.any and all docstrings --- pandas/core/generic.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 3f7334131e146..75baeab402734 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -9671,15 +9671,15 @@ def _doc_parms(cls): original index. * None : reduce all axes, return a scalar. +bool_only : boolean, default None + Include only boolean columns. If None, will attempt to use everything, + then use only boolean data. Not implemented for Series. skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA. level : int or level name, default None If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a %(name1)s. -bool_only : boolean, default None - Include only boolean columns. If None, will attempt to use everything, - then use only boolean data. Not implemented for Series. **kwargs : any, default None Additional keywords have no effect but might be accepted for compatibility with NumPy.