I have a dataframe :
Col1 Col2 Col3
01 ABC {'link':'http://smthing1}
02 DEF {'link':'http://smthing2}
I need to split col3 into new rows: expected output dataframe :
Col1 Col2 Col3
01 ABC 'http://smthing1'
02 DEF 'http://smthing2'
This doesnt seem to work :
df= df.apply(pd.Series)