I have a pandas DataFrame with missread string characters in them (like ó for example) and for categorization porpuses I need to clean them up by replacing those characters with the actual letter.
I've tried to use the following code:
df_aux1= df3[df3.MY_COL.str.contains('ó')]
to isolate it and try to convert it.
Is the replacement on a Dataframe even possible or I'm missing something?