Skip to content

Commit 3e3ebea

Browse files
committed
Fixed DataFrame.any() docstring
Used to be the same as DataFrame.all
1 parent 8829b25 commit 3e3ebea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4546,7 +4546,7 @@ def any(self, axis=0, bool_only=None, skipna=True, level=None):
45464546

45474547
def all(self, axis=0, bool_only=None, skipna=True, level=None):
45484548
"""
4549-
Return whether any element is True over requested axis.
4549+
Return whether all elements are True over requested axis.
45504550
%(na_action)s
45514551
45524552
Parameters

0 commit comments

Comments
 (0)