spectrochempy.any
- any(dataset, dim=None, keepdims=False)[source]
Test whether any array element along a given axis evaluates to True.
Returns single boolean unless
dim
is notNone
- Parameters:
dataset (array_like) – Input array or object that can be converted to an array.
dim (None or int or tuple of ints, optional) – Axis or axes along which a logical OR reduction is performed. The default (
axis=None
) is to perform a logical OR over all the dimensions of the input array.axis
may be negative, in which case it counts from the last to the first axis.keepdims (bool, 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 theany
method of sub-classes ofndarray
, however any non-default value will be. If the sub-class’ method does not implementkeepdims
any exceptions will be raised.
- Returns:
any – A new boolean or
ndarray
is returned.
See also
all
Test whether all array elements along a given axis evaluate to True.