pywrdrb.utils.timeseries.get_rollmean_timeseries

pywrdrb.utils.timeseries.get_rollmean_timeseries#

pywrdrb.utils.timeseries.get_rollmean_timeseries(timeseries, window)#

Calculates the rolling mean of a timeseries for a given window size.

Parameters:
  • timeseries (pd.Series) – The timeseries data to calculate the rolling mean for.

  • window (int) – The window size for the rolling mean.

Returns:

The rolling mean transformed timeseries data.

Return type:

pd.Series