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.