I have a dataframe that looks like:
| words | 
|---|
| Atlántica | 
| Común | 
| Guión | 
and I want to remove all accents from each elemnt.
What I'm doing is:
from unidecode import unidecode
unidecode.unidecode(df['words'])
as a result I'm obtaining an error message that says:
'function' object has no atribute 'unidecode'
Can anyone help me? Regards
 
     
    