Skip to content

DOC: update the Series.any / Dataframe.any docstring #21579

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 3 commits into from
Jun 22, 2018
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
10 changes: 7 additions & 3 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def ndim(self):

See Also
--------
ndarray.ndim
ndarray.ndim : Number of array dimensions.

Examples
--------
Expand All @@ -487,7 +487,7 @@ def size(self):

See Also
--------
ndarray.size
ndarray.size : Number of elements in the array.

Examples
--------
Expand Down Expand Up @@ -9420,7 +9420,11 @@ def _doc_parms(cls):
_any_see_also = """\
See Also
--------
pandas.DataFrame.all : Return whether all elements are True.
numpy.any : Numpy version of this method.
Series.any : Return whether any element is True.
Series.all : Return whether all elements are True.
DataFrame.any : Return whether any element is True over requested axis.
DataFrame.all : Return whether all elements are True over requested axis.
"""

_any_desc = """\
Expand Down