search for: r73238

Displaying 3 results from an estimated 3 matches for "r73238".

Did you mean: 373238
2017 Sep 14
2
special latin1 do not print as glyphs in current devel on windows
...CP1252. The characters in the 80-9F code point range are not even part of ISO/IEC 8859-1 a.k.a. latin1, see for example https://en.wikipedia.org/wiki/Windows-1252. R treats them as if they were, however, and that is exactly the problem, IMHO. Let me show you what I mean. (All output from R 3.5 r73238, see sessionInfo at the end) > Sys.getlocale("LC_CTYPE") [1] "German_Germany.1252" > x <- c("?", "?", "?", "?") > sapply(x, charToRaw) \u0080 \u009e \u009a? ? 80 9e 9a fc "?", "?", "?" serve...
2017 Sep 14
0
special latin1 do not print as glyphs in current devel on windows
...in the 80-9F code point > range are not even part of ISO/IEC 8859-1 a.k.a. latin1, see for > example https://en.wikipedia.org/wiki/Windows-1252. R treats them as > if they were, however, and that is exactly the problem, IMHO. > > Let me show you what I mean. (All output from R 3.5 r73238, see > sessionInfo at the end) > > > Sys.getlocale("LC_CTYPE") > [1] "German_Germany.1252" > > x <- c("?", "?", "?", "?") > > sapply(x, charToRaw) > \u0080 \u009e \u009a ? > 80 9e 9a fc > > &quot...
2017 Aug 01
2
special latin1 do not print as glyphs in current devel on windows
Thank you!. My apologies again for not including the console output in my message before. I sent another e-mail with the output in the meantime, so it should be a bit clearer now, what I am seeing. In case I missed something, please let me know. Yes, I am using latin1 and cp1252 interchangebly here, mostly because Encoding() is reporting the encoding as "latin1". You presumed correctly