I have a dataframe with words, an id and a code for the language. I have run this dataframe through a spellchecking algorithm - which returned a dataframe with only the words that needed a correction - and now I need to add the corrected words back to the original dataframe but this time the corrected word should replace the wrong one (I'm guessing I need to specify this with the id somehow).
Does anyone know how to solve this?
I have just appended the new dataframe back to the original for now and there's a number at the end for some reason...