用法:
Series.log()
逐元素獲取所有元素的自然對數。
自然對數是 exp 函數的倒數,因此 x.log().exp() = x
- DataFrame /係列/索引
逐元素自然對數的結果。
返回:
例子:
>>> import cudf >>> ser = cudf.Series([-1, 0, 1, 0.32434, 0.5, -10, 100]) >>> ser 0 -1.00000 1 0.00000 2 1.00000 3 0.32434 4 0.50000 5 -10.00000 6 100.00000 dtype: float64 >>> ser.log() 0 NaN 1 -inf 2 0.000000 3 -1.125963 4 -0.693147 5 NaN 6 4.605170 dtype: float64
log
對 DataFrame 的操作:>>> df = cudf.DataFrame({'first': [-1, -10, 0.5], ... 'second': [0.234, 0.3, 10]}) >>> df first second 0 -1.0 0.234 1 -10.0 0.300 2 0.5 10.000 >>> df.log() first second 0 NaN -1.452434 1 NaN -1.203973 2 -0.693147 2.302585
log
對索引的操作:>>> index = cudf.Index([10, 11, 500.0]) >>> index Float64Index([10.0, 11.0, 500.0], dtype='float64') >>> index.log() Float64Index([2.302585092994046, 2.3978952727983707, 6.214608098422191], dtype='float64')
相關用法
- Python cudf.Series.lt用法及代碼示例
- Python cudf.Series.le用法及代碼示例
- Python cudf.Series.last用法及代碼示例
- Python cudf.Series.label_encoding用法及代碼示例
- 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用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
- Python cudf.Series.notnull用法及代碼示例
- Python cudf.Series.isnull用法及代碼示例
- Python cudf.Series.rmod用法及代碼示例
- Python cudf.Series.map用法及代碼示例
- Python cudf.Series.nsmallest用法及代碼示例
- Python cudf.Series.data用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.log。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。