dfr concatenate for dataframe

Concatenates strings with other array.

WARNING

Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Signature

> dfr concatenate {flags} (other)

Parameters

  • other: Other array with string to be concatenated

Input/output types:

inputoutput
anyany

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
╰───┴───────╯