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.
398 def any(x, axis=None, keepdims=False): 399 if isinstance(axis, list): 400 axis = tuple(axis) 401 return np.any(x, axis=axis, keepdims=keepdims)