Skip to content

Commit c084bc1

Browse files
chris-b1jreback
authored andcommitted
DOC: expand doc for numeric_only
closes pandas-dev#10480 Author: Chris <[email protected]> Closes pandas-dev#14309 from chris-b1/numeric-only-doc and squashes the following commits: c9657fc [Chris] DOC: expand doc for numeric_only
1 parent df50e88 commit c084bc1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/core/generic.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -5510,8 +5510,8 @@ def _doc_parms(cls):
55105510
If the axis is a MultiIndex (hierarchical), count along a
55115511
particular level, collapsing into a %(name1)s
55125512
numeric_only : boolean, default None
5513-
Include only float, int, boolean data. If None, will attempt to use
5514-
everything, then use only numeric data
5513+
Include only float, int, boolean columns. If None, will attempt to use
5514+
everything, then use only numeric data. Not implemented for Series.
55155515
55165516
Returns
55175517
-------
@@ -5533,8 +5533,8 @@ def _doc_parms(cls):
55335533
ddof : int, default 1
55345534
degrees of freedom
55355535
numeric_only : boolean, default None
5536-
Include only float, int, boolean data. If None, will attempt to use
5537-
everything, then use only numeric data
5536+
Include only float, int, boolean columns. If None, will attempt to use
5537+
everything, then use only numeric data. Not implemented for Series.
55385538
55395539
Returns
55405540
-------
@@ -5554,8 +5554,8 @@ def _doc_parms(cls):
55545554
If the axis is a MultiIndex (hierarchical), count along a
55555555
particular level, collapsing into a %(name1)s
55565556
bool_only : boolean, default None
5557-
Include only boolean data. If None, will attempt to use everything,
5558-
then use only boolean data
5557+
Include only boolean columns. If None, will attempt to use everything,
5558+
then use only boolean data. Not implemented for Series.
55595559
55605560
Returns
55615561
-------

0 commit comments

Comments
 (0)