cudf.DataFrame.quantiles#
- DataFrame.quantiles(q=0.5, interpolation='nearest')#
Return values at the given quantile.
This API is now deprecated. Please use
DataFrame.quantile
withmethod='table'
.- Parameters
- qfloat or array-like
0 <= q <= 1, the quantile(s) to compute
- interpolation{lower, higher, nearest}
This parameter specifies the interpolation method to use, when the desired quantile lies between two data points i and j. Default ‘nearest’.
- Returns
- DataFrame