I have following dataset:
{'Result': {
'j': {'confirmed': true, 'version': '1'},
'z': {'confirmed': false, 'version': '2'},
'y': {'confirmed': true, 'version': '3'}
},
'D': 'null'
}
And I need a table with columns : name (values j, z, y goes there) and confirmed (true or false goes there).
The closest thing I have tried is pd.Series(df), but it gives me something like:
j {'confirmed': true, 'version': '1'}
z {'confirmed': false, 'version': '2'}
How can I achieve only two accurate named columns?