I've a dataframe look like this
0 1 2 3
0 {'Emotion': 'female_angry', 'Score': '90.0%'} {'Emotion': 'female_disgust', 'Score': '0.0%'} {'Emotion': 'female_fear', 'Score': '0.0%'}
1 {'Emotion': 'female_angry', 'Score': '0.0%'} {'Emotion': 'female_disgust', 'Score': '0.0%'} {'Emotion': 'female_fear', 'Score': '80.0%'}
2 {'Emotion': 'female_angry', 'Score': '0.1%'} {'Emotion': 'female_disgust', 'Score': '99.0%'} {'Emotion': 'female_fear', 'Score': '4.6%'}
I want to make a separate column based on highest score values.
Like so
Emotion
0 'female_angry'
1 'female_fear'
2 'female_disgust'
I've went through many ref but I can't relate with my problem. Any suggestions?