xarray.core.rolling.DatasetCoarsen.count

xarray.core.rolling.DatasetCoarsen.count

DatasetCoarsen.count(keep_attrs=None, **kwargs)[source]

Reduce this DatasetCoarsen’s data by applying count along some dimension(s).

Parameters
  • 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 count on this object’s data.

Returns

reduced (DatasetCoarsen) – New DatasetCoarsen object with count applied to its data and the indicated dimension(s) removed.