cudf.core.groupby.SeriesGroupBy.quantile#
- SeriesGroupBy.quantile(
- q=0.5,
- interpolation='linear',
- numeric_only: bool = False,
Compute the column-wise quantiles of the values in each group.
- Parameters:
- qfloat or array-like
The quantiles to compute.
- interpolation{“linear”, “lower”, “higher”, “midpoint”, “nearest”}
The interpolation method to use when the desired quantile lies between two data points. Defaults to “linear”.
- numeric_onlybool, default False
Include only float, int or boolean data. Currently not supported