Skip to content
Advertisement

pandas DataFrame: normalize one JSON column and merge with other columns

I have a pandas DataFrame containing one column with multiple JSON data items as list of dicts. I want to normalize the JSON column and duplicate the non-JSON columns:

JavaScript

I want

JavaScript

I can normalize JSON data using:

JavaScript

but I don’t know how to join that back to the id column of the original DataFrame.

Advertisement

Answer

You can use concat with dict comprehension with pop for extract column, remove second level and join to original:

JavaScript

What is same as:

JavaScript

JavaScript

Another solution if performance is important:

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