snowflake.snowpark.modin.plugin.extensions.resample_overrides.Resampler.quantile¶
- Resampler.quantile(q: Union[float, ExtensionArray, ndarray, Index, Series] = 0.5, **kwargs: Any) Union[DataFrame, Series][source]¶
Return value at the given quantile.
- Parameters:
q (float or array-like, default 0.5 (50% quantile)) –
- Returns:
Quantile of values within each group.
- Return type:
See also
Series.quantileReturn a series, where the index is q and the values are the quantiles.
DataFrame.quantileReturn a
DataFrame, where the columns are the columns of self, and the values are the quantiles.DataFrameGroupBy.quantileReturn a
DataFrame, where the columns are groupby columns, and the values are its quantiles.
Notes
List-like
qis not yet supported.Examples
For Series:
For DataFrame: