xarray.IndexVariable.argmin

IndexVariable.argmin(dim=None, axis=None, keep_attrs=None, skipna=None)

Index or indices of the minimum of the Variable over one or more dimensions. If a sequence is passed to ‘dim’, then result returned as dict of Variables, which can be passed directly to isel(). If a single str is passed to ‘dim’ then returns a Variable with dtype int.

If there are multiple minima, the indices of the first one found will be returned.

Parameters
  • dim (hashable, sequence of hashable or ..., optional) – The dimensions over which to find the minimum. By default, finds minimum over all dimensions - for now returning an int for backward compatibility, but this is deprecated, in future will return a dict with indices for all dimensions; to return a dict with all dimensions now, pass ‘…’.

  • axis (int, optional) – Axis over which to apply argmin. Only one of the ‘dim’ and ‘axis’ arguments can be supplied.

  • 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.

  • skipna (bool, optional) – If True, skip missing values (as marked by NaN). By default, only skips missing values for float dtypes; other dtypes either do not have a sentinel missing value (int) or skipna=True has not been implemented (object, datetime64 or timedelta64).

Returns

result

Return type

Variable or dict of Variable