La función numpy.any() comprueba si algún elemento de la array a lo largo del eje mencionado se evalúa como verdadero. Sintaxis:
numpy.any(a, axis = None, out = None, keepdims = class numpy._globals._NoValue at 0x40ba726c)
Parámetros:
array :[array_like]Input array or object whose elements, we need to test. axis : [int or tuple of ints, optional]Axis along which array elements are evaluated. The default (axis = None) is to perform a logical AND over all the dimensions of the input array. Axis may be negative, in which case it counts from the last to the first axis. out : [ndarray, optional]Output array with same dimensions as Input array, placed with result keepdims : [boolean, optional]If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array. If the default value is passed, then keepdims will not be passed through to the all method of sub-classes of ndarray, however any non-default value will be. If the sub-classes sum method does not implement keepdims any exceptions will be raised.
Devolver :
A new Boolean array as per 'out' parameter
Código 1:
Python
# Python Program illustrating # numpy.any() method import numpy as geek # Axis = NULL # True False # True True # True : False = True (OR) print("Bool Value with axis = NONE : ", geek.any([[True,False],[True,True]])) # Axis = 0 # True False # True True # True : False print("\nBool Value with axis = 0 : ", geek.any([[True,False],[True,True]], axis = 0)) print("\nBool : ", geek.any([-1, 4, 5])) # Not a Number (NaN), positive infinity and negative infinity # evaluate to True because these are not equal to zero. print("\nBool : ", geek.any([1.0, geek.nan])) print("\nBool Value : ", geek.any([[0, 0],[0, 0]]))
Producción :
Bool Value with axis = NONE : True Bool Value with axis = 0 : [ True True] Bool : True Bool : True Bool Value : False
Código 2:
Python
# Python Program illustrating # numpy.any() method # Parameter : keepdmis import numpy as geek # setting keepdmis = True print("\nBool Value : ", geek.any([[1, 0],[0, 4]], True)) # setting keepdmis = True print("\nBool Value : ", geek.any([[0, 0],[0, 0]], False))
Producción :
Bool Value : [ True True] Bool Value : [False False] VisibleDeprecationWarning: using a boolean instead of an integer will result in an error in the future return umr_any(a, axis, dtype, out, keepdims)
Referencias: https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.any.html#numpy.any
Nota: estos códigos no se ejecutarán en IDE en línea. Así que, por favor, ejecútelos en sus sistemas para explorar el funcionamiento.
Este artículo es una contribución de . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks. Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA