Index.any(*args, **kwargs) [source]
Return whether any element is True.
| Parameters: |
*args These parameters will be passed to numpy.any. **kwargs These parameters will be passed to numpy.any. |
|---|---|
| Returns: |
any : bool or array_like (if axis is specified) A single element array_like may be converted to bool. |
See also
pandas.Index.all
pandas.Series.all
Not a Number (NaN), positive infinity and negative infinity evaluate to True because these are not equal to zero.
>>> index = pd.Index([0, 1, 2]) >>> index.any() True
>>> index = pd.Index([0, 0, 0]) >>> index.any() False
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
http://pandas.pydata.org/pandas-docs/version/0.23.4/generated/pandas.Index.any.html