dask_expr._resample.Resampler.quantile

dask_expr._resample.Resampler.quantile

Resampler.quantile()[源代码]

返回给定分位数的值。

此文档字符串是从 pandas.core.resample.Resampler.quantile 复制而来的。

Dask 版本可能存在一些不一致性。

参数
q浮点数或类似数组的对象,默认值为0.5(50%分位数)(Dask不支持)
返回
DataFrame 或 Series

每个组内值的分位数。

参见

Series.quantile

返回一个序列,其中索引是 q,值是分位数。

DataFrame.quantile

返回一个DataFrame,其中列是self的列,值是分位数。

DataFrameGroupBy.quantile

返回一个DataFrame,其中列是分组列,值是其分位数。

示例

>>> ser = pd.Series([1, 3, 2, 4, 3, 8],  
...                 index=pd.DatetimeIndex(['2023-01-01',
...                                         '2023-01-10',
...                                         '2023-01-15',
...                                         '2023-02-01',
...                                         '2023-02-10',
...                                         '2023-02-15']))
>>> ser.resample('MS').quantile()  
2023-01-01    2.0
2023-02-01    4.0
Freq: MS, dtype: float64
>>> ser.resample('MS').quantile(.25)  
2023-01-01    1.5
2023-02-01    3.5
Freq: MS, dtype: float64