pastas.stats.signatures.date_max ================================ .. py:function:: pastas.stats.signatures.date_max(series: pandas.Series) -> float Compute the average date of the maximum head value with circular statistics. :param series: Pandas Series with DatetimeIndex and head values. :type series: pandas.Series :returns: Average date of the maximum head value. :rtype: float .. rubric:: Notes Average date of the maximum head value. The higher the date, the later the maximum head value occurs in the year, and vice versa. The average date is computed by taking the average of the day of the year of the maximum head value for each year, using circular statistics. We refer to :cite:t:`fisher_statistical_1995` (page 31) for more information on circular statistics. .. !! processed by numpydoc !!