xarray.IndexVariable.any#
- IndexVariable.any(dim=None, axis=None, **kwargs)[source]#
Reduce this IndexVariable’s data by applying any along some dimension(s).
- Parameters:
dim (
str
or sequence ofstr
, optional) – Dimension(s) over which to apply any.axis (
int
or sequence ofint
, optional) – Axis(es) over which to apply any. Only one of the ‘dim’ and ‘axis’ arguments can be supplied. If neither are supplied, then any is calculated over axes.keep_attrs (
bool
, optional) – If True, the attributes (attrs) will be copied from the original object to the new one. If False (default), the new object will be returned without attributes.**kwargs (
dict
) – Additional keyword arguments passed on to the appropriate array function for calculating any on this object’s data.
- Returns:
reduced (
IndexVariable
) – New IndexVariable object with any applied to its data and the indicated dimension(s) removed.