用法:
DataFrame.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.DataFrame.merge用法及代码示例
- Python cudf.DataFrame.mean用法及代码示例
- Python cudf.DataFrame.memory_usage用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.multiply用法及代码示例
- Python cudf.DataFrame.mul用法及代码示例
- Python cudf.DataFrame.mask用法及代码示例
- Python cudf.DataFrame.mode用法及代码示例
- Python cudf.DataFrame.min用法及代码示例
- Python cudf.DataFrame.max用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.median。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。