I have a dataframe:
title,text
title1,text1
title2,text2
title3,text3
title4,text4
title5,text5
and another one
text,stock
text2,40
text1,50
text5,30
text4,50
I want to merge this two dfs, the only common feature is the column text but the problem is that one row is missing of the second df and they have different order. How can I merge them in order to take an output like this:
title,text,stock
title1,text1,50
title2,text2,40
title3,text3,
title4,text4,50
title5,text5,30