I have this Dataframe :
+---------+
| data|
+---------+
|[a, b, c]|
|[d, e, f]|
|[g, h, i]|
+---------+
And a list of column name [“first col”, “second col”, “third col”]
I want to create new columns to produce the following dataframe :
+-----------+-----------+----------+
| first col| second col| third col|
+-----------+-----------+----------+
| a| b| c|
| d| e| f|
| g| h| i|
+-----------+-----------+----------+
I’am scratching my head on how to do that, what woul be the correct way to achieve this ?