Ok so I have this dictionary:
{'a': [{'foo': '1'}, {'bar': '30'}],
'b': [{'foo': '3'}],
'c': [{'foo': '184'}, {'bar': '25'}],
'd': [{'foo': '6'}],
'e': [{'bar': '4'}],
'f': [{'foo': '12'},{'bar': '1'}],
'name': 'brian'}
And I would like to transform it to a dataframe with multiindexing like this:
a b c d e f
foo bar foo bar foo bar foo bar foo bar foo bar
brian 1 30 3 0 184 25 6 0 0 4 12 1
Any help?