pastas.stats.signatures.rise_rate ================================= .. py:function:: pastas.stats.signatures.rise_rate(series: pandas.Series, normalize: bool = False, rolling_window: str | None = '7D') -> float Mean of positive head changes from one day to the next. :param series: Pandas Series with DatetimeIndex and head values. :type series: pandas.Series :param normalize: normalize the time series to values between zero and one. :type normalize: bool, 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: Mean of positive head changes from one day to the next. The units of the rise rate are L/day (L defined by the input). :rtype: float .. rubric:: Notes Mean rate of positive changes in head from one day to the next. .. !! processed by numpydoc !!