ADAPT-uiuc/dias

Replace `str.cat()` with `+`

Opened this issue · 0 comments

Instance of the original version

df['A'].str.cat(df['B'], sep=' ')

Instance of the faster version

df['A'] + ' ' + df['B']