Skip to content
Prev Previous commit
Next Next commit
Set boolean to bool
  • Loading branch information
Daniel Saxton committed Jan 27, 2019
commit c4ec33ba03bc85637856d1de76d3a441f79d7c3b
4 changes: 2 additions & 2 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -10270,7 +10270,7 @@ def _doc_parms(cls):
Parameters
----------
axis : %(axis_descr)s
skipna : boolean, default True
skipna : bool, 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
Expand All @@ -10279,7 +10279,7 @@ def _doc_parms(cls):
ddof : int, default 1
Delta Degrees of Freedom. The divisor used in calculations is N - ddof,
where N represents the number of elements.
numeric_only : boolean, default None
numeric_only : bool, default None
Include only float, int, boolean columns. If None, will attempt to use
everything, then use only numeric data. Not implemented for Series.

Expand Down