用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。