pastas.stats.signatures.low_pulse_duration ========================================== .. py:function:: pastas.stats.signatures.low_pulse_duration(series: pandas.Series, quantile: float = 0.2, rolling_window: str | None = '7D') -> float Average duration of pulses where the head is below a certain threshold. :param series: Pandas Series with DatetimeIndex and head values. :type series: pandas.Series :param quantile: Quantile used as a threshold. :type quantile: float, optional :param rolling_window: Rolling window to use for smoothing the time series. Default is 7 days. Set to None to disable. See the pandas documentation for more information. :type rolling_window: str, optional :returns: Average duration (in days) of pulses where the head drops below a certain threshold. :rtype: float .. rubric:: Notes Average duration of pulses (in days) where the head drops below a certain threshold. .. warning:: This method is sensitive to measurement noise, e.g., every change is sign in the differences is counted as a pulse. Therefore, it is recommended to smooth the time series first (which is also the default). .. !! processed by numpydoc !!