rolling_rms_window

rolling_rms_window(df, window, min_periods=None)[source]

Computes the RMS with a given window size.

Parameters:
  • df (DataFrame) – The raw data with loci as columns and timestamps as rows.

  • window (timedelta-like) – The size of the RMS window. See pandas.DataFrame.rolling for more details.

  • min_periods (int, default None) – The minimum number of periods required to compute the window. See pandas.DataFrame.rolling for more details.

Returns:

The result of applying the RMS window.

Return type:

DataFrame