Python: Pandas dataframe from Series of dict
what I would try to do is the following:
new_df = pd.DataFrame(list(original['user']))
this will convert the series to list then pass it to pandas dataframe and it should take care of the rest.
df = original['user'].apply(pd.Series)
works well
credit