repeat#

pylibcudf.strings.repeat.repeat_strings(signatures, args, kwargs, defaults, _fused_sigindex={})#

Repeat each string in the given strings column by the numbers of times given in another numeric column.

For details, see cudf::strings::repeat().

Parameters:
inputColumn

The column containing strings to repeat.

repeat_timesColumn or int

Number(s) of times that the corresponding input strings for each row are repeated.

Returns:
Column

New column containing the repeated strings.