I have a Pandas dataframe:
type(original) pandas.core.frame.DataFrame
which includes the series object original[\'user\']:
original[\'user\']
df = original['user'].apply(pd.Series)
works well
credit
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.