Skip to content

DOC: Fixed PR06 docstring errors in pandas.DataFrame #28718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
4 changes: 2 additions & 2 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7948,7 +7948,7 @@ def idxmin(self, axis=0, skipna=True):
----------
axis : {0 or 'index', 1 or 'columns'}, default 0
The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise
skipna : boolean, default True
skipna : bool, default True
Exclude NA/null values. If an entire row/column is NA, the result
will be NA.

Expand Down Expand Up @@ -7985,7 +7985,7 @@ def idxmax(self, axis=0, skipna=True):
----------
axis : {0 or 'index', 1 or 'columns'}, default 0
The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise
skipna : boolean, default True
skipna : bool, default True
Exclude NA/null values. If an entire row/column is NA, the result
will be NA.

Expand Down