I have a column in a dataframe that is a list of dictionaries:
[{"key1": value1, "key2": "value2", "key3": "value3", "key4": "value4"}, {"key1": value1, "key2": "value2", "key3": "value3", "key4": "value4"}]
Is there a way to expand this column to get something like this:
key1 key2 key3 key4
value1 value2 value3 value4
value1 value2 value3 value4
Note: key_
can be any string, value_
can be any value.
This is quite easy:
The only limitation is that the order of resulting columns is undefined as
Dict
does not guarantee key order. You would need to re-order them in the second step e.g. like this:Another approach would be:
it is a bit more complex conceptually and requires you to know what keys you want to extract, but the benefit is that you do the operation in one shot.