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

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -