I have a dataframe like below:
score pvpdate
0 {2: 29, 4: 24} 2018-05-23
1 {2: 23, 4: 24} 2018-05-29
2 {2: 36, 4: 25} 2018-05-23
and I want to filter the score column and get a result like
score1 score2 pvpdate
0 29 24 2018-05-23
1 23 24 2018-05-29
2 36 25 2018-05-23
How can I do this? I have tried the ways that score column like a json column, and it doesn't work.