The following test works fine on my laptop, but produces an error on my HP EliteOne 800 running Windows 10
H <- "שלום"
H
In the machine with the problem I get
[1] "ùìåí"
I tested several encoding, such as
Encoding(H) <- "ISO-8859-1"
which gives the same output, and
Encoding(H)<-"UTF-8"
H
that produces
[1] "\xf9\xec\xe5\xed"
Below is the response to
sessionInfo()
R version 3.2.2 (2015-08-14) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 8 x64 (build 9200)
locale: [1] LC_COLLATE=Hebrew_Israel.1255 LC_CTYPE=Hebrew_Israel.1255 LC_MONETARY=Hebrew_Israel.1255 [4] LC_NUMERIC=C
LC_TIME=Hebrew_Israel.1255attached base packages: [1] stats graphics grDevices utils
datasets methods baseloaded via a namespace (and not attached): [1] tools_3.2.2
Any help will be appreciated,
Avi
help(pac=grDevices)
– IRTFM