pastas.stats.dutch.q_glg ======================== .. py:function:: pastas.stats.dutch.q_glg(series: pandas.Series, tmin: pandas.Timestamp | str | None = None, tmax: pandas.Timestamp | str | None = None, q: float = 0.06, by_year: bool = True) -> pandas.Series Gemiddeld Laagste Grondwaterstand (GLG) also called MLGL (Mean Low Groundwater Level). :param series: Series to calculate the GLG for. :type series: pandas.Series :param tmin: A string or pandas.Timestamp with the start and end dates for the period (E.g. '1980-01-01 00:00:00' and '2020-01-01 00:00:00'). :type tmin: pandas.Timestamp or str, optional :param tmax: A string or pandas.Timestamp with the start and end dates for the period (E.g. '1980-01-01 00:00:00' and '2020-01-01 00:00:00'). :type tmax: pandas.Timestamp or str, optional :param q: quantile, fraction of exceedance (default 0.06) :type q: float, optional :param by_year: Take average over quantiles per year (default True) :type by_year: bool, optional .. rubric:: Notes Approximated by taking quantiles of the time series values per year and calculating the mean of the quantiles. The series is first resampled to daily values. .. !! processed by numpydoc !!