cudf.core.groupby.groupby.DataFrameGroupBy.quantile#

DataFrameGroupBy.quantile(q=0.5, interpolation='linear')#

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”.