Displaying 7 results from an estimated 7 matches for "u0080".
Did you mean:
0080
2017 Sep 14
2
special latin1 do not print as glyphs in current devel on windows
...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 as examples in the 80-9F range of CP1252. I also
show the "?" just as an example of a non-ASCII character outside that
range (and because Patrick Perry used it in his bug report which might
be a (slightly)...
2017 Aug 01
2
special latin1 do not print as glyphs in current devel on windows
...;, "\x80"), to = "UTF-8")
> Encoding(x_iutf8)
[1] "UTF-8" "UTF-8"
> x_iutf8
[1] "?" "?"
> x_inat <- iconv(x_iutf8, from = "UTF-8")
> Encoding(x_inat)
[1] "latin1" "latin1"
> x_inat
[1] "\u0080" "\u0080"
[[alternative HTML version deleted]]
2017 Sep 14
0
special latin1 do not print as glyphs in current devel on windows
...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 as examples in the 80-9F range of CP1252. I also
> show the "?" just as an example of a non-ASCII character outside that
> range (and because Patrick Perry used it in his bug report which...
2017 Aug 01
3
special latin1 do not print as glyphs in current devel on windows
Upon further inspection, I think these are at least two problems.
First the issue with printing latin1/cp1252 characters in the "80" to "9F"
code range.
x <- c("?", "?", "?")
Encoding(x)
print(x)
I assume that these are Unicode escapes!? (Given that Encoding(x) shows
"latin1" I'd rather expect latin1/cp1252 escapes here, but
2010 Sep 01
1
OdfWeave and Locale
...content.xml
inflating: manifest.rdf
inflating: styles.xml
extracting: meta.xml
inflating: Thumbnails/thumbnail.png
inflating: settings.xml
inflating: META-INF/manifest.xml
Removing test_input.odt
Creating a Pictures directory
Pre-processing the contents
Error in gsub("\xe2\u0080\x93", "-", x) :
'pattern' is invalid in this locale
------ R output --------
I would like to know how to fix that. Thank you.
The following are the session info and the locale information.
---- Session info -----
sessionInfo()
R version 2.10.1 (2009-12-14)
i386-pc-ming...
2008 Aug 25
1
Unicode notation \x000
...ode notation of German and Spanish special
characters (as read in by read.csv from excel spreadsheets) by
character strings that can be interpreted by LaTeX.
E.g.:
uni2latex <- function(x){
x <- gsub("&", "et", x, fixed = TRUE)
# Deutsch
x <- gsub("\u0080", "\\\"A", x, fixed = TRUE)
x <- gsub("\u008a", "\\\"a", x, fixed = TRUE)
x <- gsub("\u0085", "\\\"O", x, fixed = TRUE)
x <- gsub("\u009a", "\\\"o", x, fixed = TRUE)
x <- gsub("\u...
2010 Aug 04
2
French accents on characters
Hello
Could someone please direct me to the correct commands for adding accents
(grave and aigu) to a letter in a plot title, label, or in added text? I'm
sure there's a handy list somewhere, but I've failed in coming up with the
correct search words to find it.
Thank you muchly!
Jen