Skip to content
Advertisement

How to extract key value from deep dictionary in pandas || Python || dataframe

I am making a request call and storing data into JSON, and from there I am loading JSON to pandas DataFrame, good thing is it works like magic. However, unfortunately, I have deep dictionaries available in a few columns in the data frame. I am unable to extract key values from it. I am attaching the CSV file with a few columns and the important one is the “guest” column.

I have been looking on the internet and have tried so many things that by now I am so confused about what all is correct and incorrect. below is the snapshot of my code and trials.

JavaScript

All I want is to extract id, first_name and the last_namefrom the dictionary from that guest column. Use this link to access the csv file which has the DataFrame result.

Advertisement

Answer

The way you’re doing it, you’re trying to extract your first_name, last_name and id keys from a str representation of a dict. You can convert it back to a dict using the eval builtin (not recommended if you’re not sure of where the data is coming from), or the ast.literal_eval function from the ast module.

JavaScript

Once you have the guest dictionaries as dict objects, you can simply apply pd.Series to convert it to a separate DataFrame

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement