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.
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.