I have a dictionary below: [{a:1, b:2}{a:4,c:2}]
for the above dictionary, I want to change to pandas dataframe below:
a b c
1 2 -
4 - 2
Can someone help how to achieve this?
I have a dictionary below: [{a:1, b:2}{a:4,c:2}]
for the above dictionary, I want to change to pandas dataframe below:
a b c
1 2 -
4 - 2
Can someone help how to achieve this?