I have a dictionary that looks like that:
dic = {'a': {'b': [1,2], 'c': [3,4]}, 'A': {'B': [10,20], 'C': [30, 40]}}
I would like to get a 2 dim dataframe with 3 columns that looks like that:
'a' 'b' 1
'a' 'b' 2
'a' 'c' 3
'a' 'c' 4
'A' 'B' 10
'A' 'B' 20
'A' 'C' 30
'A' 'C' 40