🍾 Xarray is now 10 years old! 🎉

xarray.core.rolling.DataArrayCoarsen.std

xarray.core.rolling.DataArrayCoarsen.std#

DataArrayCoarsen.std(keep_attrs=None, **kwargs)[source]#

Reduce this DataArrayCoarsen’s data by applying std along some dimension(s).

Parameters:
  • 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).

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

Returns:

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