I have a column, X, where the rows' values are a list of dictionaries. I.e.
row 1 = [{category: **1**, outcome: 1444}, {category: **3**, outcome: 12}, {category: **3**, outcome: 11},... ]
row 2 = [{category: 2, outcome: 1555}, {category: 5, outcome: 42},...]
How can I create columns of each key present in X to then populate with values from the list of dictionaries from each row?
So for row 1, I'd populate a column, 1, with 1444... and column 3, with 12, 11 (2 values separated by a comma).