用法:
DataFrame.mean(axis=None, skipna=None, level=None, numeric_only=None, **kwargs)
返回请求轴的平均值。
- axis:{0 或 ‘index’、1 或 ‘columns’}
要应用的函数的轴。
- skipna:布尔值,默认为真
计算结果时排除 NA/null 值。
- level:int 或级别名称,默认无
如果轴是 MultiIndex(分层),则沿特定级别计数,折叠成一个系列。
- numeric_only:布尔值,默认无
仅包括 float、int、boolean 列。如果没有,将尝试使用所有内容,然后仅使用数字数据。未针对系列实施。
- **kwargs:
要传递给函数的附加关键字参数。
- mean:Series 或 DataFrame(如果指定了级别)
参数:
返回:
例子:
>>> import cudf >>> df = cudf.DataFrame({'a': [1, 2, 3, 4], 'b': [7, 8, 9, 10]}) >>> df.mean() a 2.5 b 8.5 dtype: float64
相关用法
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.merge用法及代码示例
- 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.mean。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。