dask.dataframe.tseries.resample.Resampler.median
dask.dataframe.tseries.resample.Resampler.median¶
- Resampler.median()[source]¶
Compute median of groups, excluding missing values.
This docstring was copied from pandas.core.resample.Resampler.median.
Some inconsistencies with the Dask version may exist.
For multiple groupings, the result index will be a MultiIndex
- Parameters
- numeric_onlybool, default False (Not supported in Dask)
Include only float, int, boolean columns.
Changed in version 2.0.0: numeric_only no longer accepts
None
and defaults to False.
- Returns
- Series or DataFrame
Median of values within each group.