After learning about the Unicode values for "Harvey Balls" , Harvey balls in R , I tried an alternative plotting approach. Strange things happen:
plot(1:10,t='n')
text(1,1,c(intToUtf8(c(1,9684))),cex=3)
text(2,2,c(intToUtf8(c(9684))),cex=3)
text(3,3,c(intToUtf8(c(9679,9684))),cex=3)
text(4,4,c(intToUtf8(c(9679))),cex=3)
text(5,5,c(intToUtf8(c(9685,9684))),cex=3)
text(6,6,c(intToUtf8(c(9682,9685))),cex=3)
text(7,7,c(intToUtf8(c(9682,9675))),cex=3)
text(8,8,c(intToUtf8(c(9682,9682))),cex=3)
I can't figure it out -- sometimes the Unicode values get recognized, and sometimes not; and it seems to depend heavily on the first value in my concatenation. The immediate problem is that I can't plot a specific Harvey Ball all by itself, but I'm more worried about the difficulty in getting text
-- or maybe intToUtf8
to properly retrieve the desired symbol.
Any ideas?
edit: R 3.0.2, Windows7. I'm going to try to reproduce this later on when I can get to an OSX machine. In the meantime, success/failure stories greatfully accepted.