pyarrow.compute.binary_join

pyarrow.compute.binary_join(list, separator, *, memory_pool=None)

Join a list of strings together with a separator to form a single string.

Insert separator between list elements, and concatenate them. Any null input and any null list element emits a null output.

Parameters
  • list (Array-like or scalar-like) – Argument to compute function

  • separator (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.