I have the following dataframe:
print(df.head())
Line values
Line1 {'ValueType1': 1}
Line2 {'ValueType2': 3}
Line3 {'ValueType3': 5, 'ValueType4': 6}
I want to have the following dataframe at the end:
Line Valuetype value
Line1 ValueType1 1
Line2 ValueType2 3
Line3 ValueType3 5
Line3 ValueType4 6
How can I achieve this?