I have a list of lists of tuples I would like to transform into a pandas data frame.
Each tuple contains the same amount of elements and they are ordered. How can I load this data into a pandas dataframe so each value individually appears in a cell under it's respective? Original Data Sample:
[[(John, Smith),(Jane, Smith)], [(John, Doe),(Jane, Doe)]]
Desired Output
First| Last
--------------
John | Smith |
Jane | Smith |
John | Doe |
Jane | Doe |