Skip to content
Advertisement

How to create columns from rows given key:value pair in the column in pandas?

I have the DF of this kind:

JavaScript

And I need to convert to this:

JavaScript

I need to keep label for unique value and keys are merged to the right if present in the data. Keys may vary and be of different names for one value.

Feel free to share how to rename the question because I could not find the better way to name the problem.

EDIT: Partly this solution contains what I need however there is no decent way to add columns representing key in the label column. Ideally something like a function with df input is needed.

Advertisement

Answer

Extract information into two data frames and merge them.

JavaScript

Output

JavaScript
Advertisement