pyarrow.compute.millisecond¶
- pyarrow.compute.millisecond(values, /, *, memory_pool=None)¶
Extract millisecond values.
Millisecond returns number of milliseconds since the last full second. Null values emit null. An error is returned if the values have a defined timezone but it cannot be found in the timezone database.
- Parameters
- valuesArray-like or scalar-like
Argument to compute function.
- memory_pool
pyarrow.MemoryPool
, optional If not passed, will allocate memory from the default memory pool.