I have a dataframe where some columns are formatted this way:
example value of ColX:
{variable1={key:value,key2:value2.....}, variable2={key3:value3,key4:value4.....}}
Let's say I want to access value2 and value4. How can I address them using Python?
My desired result is to make a column key2 with value2's and column key4 with all the value4's
Sorry. I could not google the name of this data structure. It's something like a list of dictionary definitions packed into strings.