From 3e3ebea3d97ec22a6a6162985fc80ac6c7749c6d Mon Sep 17 00:00:00 2001 From: Adam Obeng Date: Thu, 13 Dec 2012 16:09:28 +0100 Subject: [PATCH] Fixed DataFrame.any() docstring Used to be the same as DataFrame.all --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 3f555c800d1eb..b73d411354989 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4546,7 +4546,7 @@ def any(self, axis=0, bool_only=None, skipna=True, level=None): def all(self, axis=0, bool_only=None, skipna=True, level=None): """ - Return whether any element is True over requested axis. + Return whether all elements are True over requested axis. %(na_action)s Parameters