用法:
Series.sqrt()
逐元素获取所有元素的非负平方根。
- DataFrame /系列/索引
每个元素的非负平方根的结果。
返回:
例子:
>>> import cudf >>> import cudf >>> ser = cudf.Series([10, 25, 81, 1.0, 100]) >>> ser 0 10.0 1 25.0 2 81.0 3 1.0 4 100.0 dtype: float64 >>> ser.sqrt() 0 3.162278 1 5.000000 2 9.000000 3 1.000000 4 10.000000 dtype: float64
sqrt
对 DataFrame 的操作:>>> df = cudf.DataFrame({'first': [-10.0, 100, 625], ... 'second': [1, 2, 0.4]}) >>> df first second 0 -10.0 1.0 1 100.0 2.0 2 625.0 0.4 >>> df.sqrt() first second 0 NaN 1.000000 1 10.0 1.414214 2 25.0 0.632456
sqrt
对索引的操作:>>> index = cudf.Index([-10.0, 100, 625]) >>> index Float64Index([-10.0, 100.0, 625.0], dtype='float64') >>> index.sqrt() Float64Index([nan, 10.0, 25.0], dtype='float64')
相关用法
- Python cudf.Series.sort_values用法及代码示例
- Python cudf.Series.std用法及代码示例
- Python cudf.Series.searchsorted用法及代码示例
- Python cudf.Series.sort_index用法及代码示例
- Python cudf.Series.sum_of_squares用法及代码示例
- Python cudf.Series.scale用法及代码示例
- Python cudf.Series.subtract用法及代码示例
- Python cudf.Series.sum用法及代码示例
- Python cudf.Series.sub用法及代码示例
- Python cudf.Series.skew用法及代码示例
- Python cudf.Series.set_index用法及代码示例
- Python cudf.Series.sin用法及代码示例
- Python cudf.Series.sample用法及代码示例
- Python cudf.Series.size用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.sqrt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。