I have the following pandas dataframe:
The field '_source' has a JSON structure in the content. I'd like to convert this field in another dataframe with the correspondent columns.
The type of this field is Series:
type(df['_source'])
pandas.core.series.Series
Which is the best way to convert this field ('_source') in a Pandas DataFrame?
Thanks in advance
Kind regards