This is my Dataframe:
+--------------------+
| NewsId| newsArr| transArr|
+----------+--------------------+--------------------+
| 26|[Republicans, Sto...|[[R, IH0, P, AH1,...|
| 29|[ISIS, Claims, Re...|[[AY1, S, AH0], [...|
| 474|[Concert, for, Tr...|[[K, AA1, N, S, E...|
| 964|[How, a, Fractiou...|[[HH, AW1], [AH0]...|
| 1677|[Review:, ‘Kong:,...|[[n/a], [n/a], [S...|
| 1697|[The, Rice-Size, ...|[[DH, AH0], [n/a]...|
| 1806|[Populists, Appea...|[[P, AA1, Y, AH0,...|
| 1950|[Uber, Board, Sta...|[[Y, UW1, B, ER0]...|
| 2040|[Health, Bill’s, ...|[[HH, EH1, L, TH]...|
| 2214|[Unmasking, the, ...|[[n/a], [DH, AH0]...|
I want to make the "transArr" column cells into strings like this:
+--------------------+
| NewsId| newsArr| transArr|
+----------+--------------------+--------------+
| 26|[Republicans, Sto...|R IH0 P AH1...|
| 29|[ISIS, Claims, Re...|AY1 S AH0... |
| 474|[Concert, for, Tr...|K AA1 N S E...|
| 964|[How, a, Fractiou...|HH AW1 AH0... |
| 1677|[Review:, ‘Kong:,...|n/a n/a S... |
| 1697|[The, Rice-Size, ...|DH AH0 n/a... |
| 1806|[Populists, Appea...|P AA1 Y AH0...|
| 1950|[Uber, Board, Sta...|Y UW1 B ER0...|
| 2040|[Health, Bill’s, ...|HH EH1 L TH...|
| 2214|[Unmasking, the, ...|n/a DH AH0... |
Is there an relatively easy solution to this?