Displaying 1 result from an estimated 1 matches for "u043b".
Did you mean:
043b
2008 May 30
1
Unicode characters (R 2.7.0 on Windows XP SP3 and Hardy Heron)
...??????"
# - words.1[214] should be "????????", as in corpus.file[14]
# but it is "????????????????"
# 2 entering Unicode characters into R: I want to search for,
# say, "???". So I try to define it as follows,
# but this doesn't work:
(x123<-"\u0434\u043b\u044F")
# I can define each individual character
(x1<-"\u0434"); (x2<-"\u043b"); (x3<-"\u044F")
# and each pair of character
(x12<-"\u0434\u043b")
(x13<-"\u0434\u044F")
(x23<-"\u043b\u044F")
# but not all three .....