Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -16275,7 +16275,7 @@ def min(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16382,7 +16382,7 @@ def max(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16458,7 +16458,7 @@ def sum(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16562,7 +16562,7 @@ def prod(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16682,7 +16682,7 @@ def mean(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16806,7 +16806,7 @@ def median(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -16931,7 +16931,8 @@ def sem(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

.. warning::
Expand Down Expand Up @@ -17051,7 +17052,8 @@ def var(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

.. warning::
Expand Down Expand Up @@ -17170,7 +17172,8 @@ def std(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

.. warning::
Expand Down Expand Up @@ -17292,7 +17295,7 @@ def skew(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down Expand Up @@ -17413,7 +17416,7 @@ def kurt(

Parameters
----------
axis : {index (0), columns (1)}
axis : {index (0), columns (1)}, default 0
Axis for the function to be applied on.
For `Series` this parameter is unused and defaults to 0.

Expand Down
Loading