8000 DOC/CLN: Fix errors in DataFrame docstrings by dsaxton · Pull Request #24952 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC/CLN: Fix errors in DataFrame docstrings #24952

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 13 commits into from
Feb 14, 2019
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
0