Home > Blockchain >  Transform list of dict in dataframe in multiple rows
Transform list of dict in dataframe in multiple rows

Time:01-27

I have this dataframe:

enter image description here

where the column items is a list of dictionnary with multiple 'item_id' and 'item_name' key. And I would like to split all these informations in the same dataframe like this:

enter image description here

CodePudding user response:

You could simply use the enter image description here

  • Related