I would like to use Hebrew characters in string in R. I used the following:
> a<-c("משה")
> a
[1] "îùä"
> class (a)
[1] "character"
As can be seen I get Jibbrish when I output the content of the string or using any functions. How can I use Hebrew characters?
Encoding
. You can man it in RStudio via> ?Encoding
– Hemispheroid