Skip to content
Prev Previous commit
Next Next commit
readded the axis paramerte reference and added a kwargs
  • Loading branch information
Marcon Laforet authored and Marcon Laforet committed Mar 10, 2018
commit ce5a115d51a40207b7e47d14dbf6fc3e70892a1c
7 changes: 4 additions & 3 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -7787,9 +7787,7 @@ def _doc_parms(cls):

Parameters
----------
axis : int, default 0
Select the axis that you would like to analyze. For column-wise
(axis=0), for row-wise (axis=1).
axis : %(axis_descr)s
skipna : boolean, default True
Exclude NA/null values. If an entire row/column is NA, the result
will be NA.
Expand All @@ -7799,6 +7797,9 @@ def _doc_parms(cls):
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 fect but might be accepted for
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fect -> affect.

compatibility with numpy.

Returns
-------
Expand Down