pyarrow.compute.asin_checked¶
- 
pyarrow.compute.asin_checked(x, *, memory_pool=None)¶
- Compute the inverse sine of the elements argument-wise. - Integer arguments return double values. This function raises an error on values outside its domain. To return NaN instead, see “asin”. - Parameters
- x (Array-like or scalar-like) – Argument to compute function 
- memory_pool (pyarrow.MemoryPool, optional) – If not passed, will allocate memory from the default memory pool. 
 
 
