pyarrow.compute.log10_checked#
- pyarrow.compute.log10_checked(x, /, *, memory_pool=None)#
Compute base 10 logarithm.
Non-positive values raise an error. Null values return null. Use function “log10” if you want non-positive values to return -inf or NaN.
- Parameters
- xArray-like or scalar-like
Argument to compute function.
- memory_pool
pyarrow.MemoryPool
, optional If not passed, will allocate memory from the default memory pool.