dfr concatenate for dataframe

Concatenates strings with other array.

Signature

> dfr concatenate (other)

Parameters

  • other: Other array with string to be concatenated

Examples

Concatenate string

> let other = ([za xs cd] | dfr into-df);
    [abc abc abc] | dfr into-df | dfr concatenate $other
╭───┬───────╮
│ # │   0   │
├───┼───────┤
│ 0 │ abcza │
│ 1 │ abcxs │
│ 2 │ abccd │
╰───┴───────╯