pyarrow.compute.log10_checked

pyarrow.compute.log10_checked(x, *, memory_pool=None)

Compute log base 10 of arguments element-wise.

Non-positive values return -inf or NaN. Null values return null. Use function “log10” if you want non-positive values to return -inf or NaN.

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.