Character accented with R -
i treating text r (text classification) , have problem words in french text , exemple :
charg\u00e9 d'\u00e9tude how can resolve problem?
thank you
i got method answer:"print unicode character string in r". looks r supposed handle accents maybe missing on original file, , r not recognizing text unicode.
 library(stringi)  stri_unescape_unicode("charg\u00e9 d'\u00e9tude") [1] "chargé d'étude" 
Comments
Post a Comment