๐Ÿพ Xarray is now 10 years old! ๐ŸŽ‰

xarray.Dataset.rolling_exp

xarray.Dataset.rolling_exp#

Dataset.rolling_exp(window=None, window_type='span', **window_kwargs)[source]#

Exponentially-weighted moving window. Similar to EWM in pandas

Requires the optional Numbagg dependency.

Parameters:
  • window (mapping of hashable to int, optional) โ€“ A mapping from the name of the dimension to create the rolling exponential window along (e.g. time) to the size of the moving window.

  • window_type ({"span", "com", "halflife", "alpha"}, default: "span") โ€“ The format of the previously supplied window. Each is a simple numerical transformation of the others. Described in detail: https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.ewm.html

  • **window_kwargs (optional) โ€“ The keyword arguments form of window. One of window or window_kwargs must be provided.