用法:
Series.asin()
逐元素獲取三角反正弦。
正弦的倒數,因此,如果 y = x.sin(),則 x = y.asin()
- DataFrame /係列/索引
三角運算的結果。
返回:
例子:
>>> import cudf >>> ser = cudf.Series([-1, 0, 1, 0.32434, 0.5]) >>> ser.asin() 0 -1.570796 1 0.000000 2 1.570796 3 0.330314 4 0.523599 dtype: float64
asin
對 DataFrame 的操作:>>> df = cudf.DataFrame({'first': [-1, 0, 0.5], ... 'second': [0.234, 0.3, 0.1]}) >>> df first second 0 -1.0 0.234 1 0.0 0.300 2 0.5 0.100 >>> df.asin() first second 0 -1.570796 0.236190 1 0.000000 0.304693 2 0.523599 0.100167
asin
對索引的操作:>>> index = cudf.Index([-1, 0.4, 1, 0.3]) >>> index Float64Index([-1.0, 0.4, 1.0, 0.3], dtype='float64') >>> index.asin() Float64Index([-1.5707963267948966, 0.41151684606748806, 1.5707963267948966, 0.3046926540153975], dtype='float64')
相關用法
- Python cudf.Series.as_mask用法及代碼示例
- Python cudf.Series.astype用法及代碼示例
- 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.any用法及代碼示例
- Python cudf.Series.applymap用法及代碼示例
- Python cudf.Series.argsort用法及代碼示例
- Python cudf.Series.abs用法及代碼示例
- 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.asin。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。