I have a Dataframe full of french words, endings and new endings. I want to create a 4th column with the alternative to the word as such:
word |ending|new ending|what i want|
--------------------------------------
placer |cer |ceras |placeras |
placer |cer |cerait |placerait |
placer |cer |ceront |placeront |
finir |ir |iras |finiras |
So it's basically to replace, in column 1, what's equivalent in column 2, by what I have in column 3.
Any ideas ?