ak.str.repeat#

Defined in awkward.operations.str.akstr_repeat on line 17.

ak.str.repeat(array, num_repeats, *, highlevel=True, behavior=None)#
Parameters

Replaces any string-valued or bytestring-valued data with the same value repeated num_repeats times, which can be a scalar integer or a (broadcasted) array of integers.

Note: this function does not raise an error if the array does not contain any string or bytestring data.

Requires the pyarrow library and calls pyarrow.compute.binary_repeat or pyarrow.compute.binary_repeat on strings and bytestrings, respectively.