R (RGui/RStudio) shows an encoding issue. Here is an example:
my <- "≠"
my
as.data.frame(my)
The result is:
> my <- "≠"
> my
[1] "≠"
> as.data.frame(my)
my
1 <U+2260>
Any ideas, why I get different results?
Some information about local configuration:
> Sys.getlocale()
[1] "LC_COLLATE=German_Germany.1252;LC_CTYPE=German_Germany.1252;LC_MONETARY=German_Germany.1252;LC_NUMERIC=C;LC_TIME=German_Germany.1252"