Answers for "turn a list of dicts into a pandas data frame"

7

dataframe to list of dicts

df = pd.DataFrame({'Name': ['John', 'Sara','Peter','Cecilia'],
                   'Age': [38, 47,63,28],
                  'City':['Boston', 'Charlotte','London','Memphis']})

datadict = df.to_dict('records')
Posted by: Guest on October-22-2020
1

python list of dict to dataframe

# Supposing d is your list of dicts, simply
df = pd.DataFrame(d)
# Note: this does not work with nested data
Posted by: Guest on April-23-2021

Code answers related to "turn a list of dicts into a pandas data frame"

Browse Popular Code Answers by Language