I have a Pandas dataframe in the following format:
ID|Date|Values
1234|2021-01-01|{"Reason":"Change", "New Value":"Segment 2", "Old Value":"Segment 1"}
I'd like to parse the values column and create a new dataframe:
ID|Date|Old|New
The order of the values is sometimes different. How can I extract these values in Python?