用法:
Rolling.quantile(quantile)
計算滾動分位數。
此文檔字符串是從 pandas.core.window.rolling.Rolling.quantile 複製的。
可能存在與 Dask 版本的一些不一致之處。
- quantile:浮點數
要計算的分位數。 0 <= 分位數 <= 1。
- interpolation:{‘linear’, ‘lower’, ‘higher’, ‘midpoint’, ‘nearest’}(Dask 不支持)
當所需的分位數位於兩個數據點
i
和j
之間時,此可選參數指定要使用的插值方法:線性:
i + (j - i) * fraction
,其中fraction
是由i
和j
包圍的索引的小數部分。下:
i
。更高:
j
。最近:
i
或j
以最近的為準。中點:(
i
+j
)/2。
- **kwargs:
為了 NumPy 的兼容性,不會對結果產生影響。
- Series或DataFrame
返回類型與
np.float64
dtype 的原始對象相同。
參數:
返回:
例子:
>>> s = pd.Series([1, 2, 3, 4]) >>> s.rolling(2).quantile(.4, interpolation='lower') 0 NaN 1 1.0 2 2.0 3 3.0 dtype: float64
>>> s.rolling(2).quantile(.4, interpolation='midpoint') 0 NaN 1 1.5 2 2.5 3 3.5 dtype: float64
相關用法
- Python dask.dataframe.rolling.Rolling.var用法及代碼示例
- Python dask.dataframe.rolling.Rolling.count用法及代碼示例
- Python dask.dataframe.rolling.Rolling.min用法及代碼示例
- Python dask.dataframe.rolling.Rolling.std用法及代碼示例
- Python dask.dataframe.rolling.Rolling.sum用法及代碼示例
- Python dask.dataframe.rolling.Rolling.kurt用法及代碼示例
- Python dask.dataframe.rolling.Rolling.mean用法及代碼示例
- Python dask.dataframe.rolling.Rolling.median用法及代碼示例
- Python dask.dataframe.read_table用法及代碼示例
- Python dask.dataframe.read_hdf用法及代碼示例
- Python dask.dataframe.read_json用法及代碼示例
- Python dask.dataframe.read_fwf用法及代碼示例
- Python dask.dataframe.read_sql_table用法及代碼示例
- Python dask.dataframe.read_parquet用法及代碼示例
- Python dask.dataframe.read_csv用法及代碼示例
- Python dask.dataframe.reshape.get_dummies用法及代碼示例
- Python dask.dataframe.read_orc用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python dask.dataframe.to_records用法及代碼示例
- Python dask.dataframe.DataFrame.applymap用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 dask.dataframe.rolling.Rolling.quantile。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。