How to use 'pandas any' in Python

Every line of 'pandas any' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
398def any(x, axis=None, keepdims=False):
399 if isinstance(axis, list):
400 axis = tuple(axis)
401 return np.any(x, axis=axis, keepdims=keepdims)

Related snippets