pastas.timeseries_utils.pandas_equidistant_asfreq ================================================= .. py:function:: pastas.timeseries_utils.pandas_equidistant_asfreq(series: pandas.Series, freq: str) -> pandas.Series Create equidistant time series by rounding timestamps and dropping duplicates. Note: this method rounds all timestamps down to the nearest "freq" then drops duplicates by keeping the first entry. This means observations are shifted in time. :param series: time series. :type series: pandas Series :param freq: frequency string. :type freq: str :returns: equidistant time series with frequency 'freq'. :rtype: Series .. !! processed by numpydoc !!