用法:
DataFrame.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.DataFrame.subtract用法及代码示例
- Python cudf.DataFrame.stack用法及代码示例
- Python cudf.DataFrame.sum_of_squares用法及代码示例
- Python cudf.DataFrame.set_index用法及代码示例
- Python cudf.DataFrame.sin用法及代码示例
- Python cudf.DataFrame.std用法及代码示例
- Python cudf.DataFrame.scale用法及代码示例
- Python cudf.DataFrame.size用法及代码示例
- Python cudf.DataFrame.searchsorted用法及代码示例
- Python cudf.DataFrame.skew用法及代码示例
- Python cudf.DataFrame.sum用法及代码示例
- Python cudf.DataFrame.sort_index用法及代码示例
- Python cudf.DataFrame.sort_values用法及代码示例
- Python cudf.DataFrame.sub用法及代码示例
- Python cudf.DataFrame.select_dtypes用法及代码示例
- Python cudf.DataFrame.sample用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.sqrt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。