I would like to convert nested dict to DataFrame object. I have a dictionary:
{
'David X': {
'something1': 'string1'
'something2': 'string2'
'something3': 'string3'
},
'David Y': {
'something1': 'str1'
'something2': 'str2'
'something3': 'str3'
}
}
I would like to obtain DataFrame object with rows consist of names, columns consist of 'something {1,2,3}' and appropriate values.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…