Skip to content
Advertisement

loop over series of dictionaries to convert to DataFrames

I have that list of dictionaries in several rows that I need to loop over to create new DataFrame. I have tried the following loop:

JavaScript

but getting the following error: unsupported operand type(s) for +: ‘int’ and ‘str’

The type of my s: pandas.core.series.Series

Convert string-encoded list into new dataframe

s:

JavaScript

Advertisement

Answer

After reading the related post and your comment, I assume that you have a pandas Series (of a column from a DataFrame which is the same) containing string representations of lists of dicts.

Conceptualy what should be done will use the following conversions:

  • string -> list of dicts: I would use ast.literal_eval
  • list(s) of dicts -> DataFrame(s) -> a DataFrame can directly be created from a list of dicts.

So you could build a list of DataFrames, one per row of your Series that way:

JavaScript

you could even concatenate all of them in one single dataframe:

JavaScript

or directly build the full dataframe with:

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