用法:
Series.median(axis=None, skipna=None, level=None, numeric_only=None, **kwargs)
返回請求軸的值的中值。
- skipna:布爾值,默認為真
計算結果時排除 NA/null 值。
- 標量
參數:
返回:
注意:
當前不支持的參數是
level
和numeric_only
。例子:
>>> import cudf >>> ser = cudf.Series([10, 25, 3, 25, 24, 6]) >>> ser 0 10 1 25 2 3 3 25 4 24 5 6 dtype: int64 >>> ser.median() 17.0
相關用法
- Python cudf.Series.memory_usage用法及代碼示例
- Python cudf.Series.mean用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.min用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
- Python cudf.Series.map用法及代碼示例
- Python cudf.Series.multiply用法及代碼示例
- Python cudf.Series.mode用法及代碼示例
- Python cudf.Series.mul用法及代碼示例
- Python cudf.Series.mod用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.head用法及代碼示例
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.interleave_columns用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.notnull用法及代碼示例
- Python cudf.Series.isnull用法及代碼示例
- Python cudf.Series.rmod用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.median。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。