pyarrow.compute.log10_checked#

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

计算以 10 为底的对数。

非正数值会引发错误。空值返回空值。如果您希望非正数值返回 -inf 或 NaN,请使用函数“log10”。

参数:
x类数组或类标量

计算函数的参数。

memory_poolpyarrow.MemoryPool, 可选

如果不传递,将从默认内存池分配内存。