pastas.stats.signatures.cv_rise_rate ==================================== .. py:function:: pastas.stats.signatures.cv_rise_rate(series: pandas.Series, normalize: bool = True, rolling_window: str | None = '7D') -> float Coefficient of Variation in rise rate. :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: Coefficient of Variation in rise rate. :rtype: float .. rubric:: Notes Coefficient of variation in rise rate :cite:p:`richter_method_1996`. The higher the coefficient of variation, the more variable the rise rate is, and vice versa. .. !! processed by numpydoc !!