用法:
Series.abs()
返回具有每个元素的绝对数值的 Series/DataFrame。
此函数仅适用于全为数字的元素。
- DataFrame /系列
每个元素的绝对值。
返回:
例子:
Series 中的绝对数值
>>> s = cudf.Series([-1.10, 2, -3.33, 4]) >>> s.abs() 0 1.10 1 2.00 2 3.33 3 4.00 dtype: float64
相关用法
- Python cudf.Series.add用法及代码示例
- Python cudf.Series.apply用法及代码示例
- Python cudf.Series.all用法及代码示例
- Python cudf.Series.acos用法及代码示例
- Python cudf.Series.autocorr用法及代码示例
- Python cudf.Series.append用法及代码示例
- Python cudf.Series.as_mask用法及代码示例
- Python cudf.Series.any用法及代码示例
- Python cudf.Series.asin用法及代码示例
- Python cudf.Series.applymap用法及代码示例
- Python cudf.Series.astype用法及代码示例
- Python cudf.Series.argsort用法及代码示例
- Python cudf.Series.atan用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.abs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。