Right to left languages support in R, using Mac
I am wondering if there is anyway to support right-to-left languages in R while using Mac For instance suppose the following code: x <- data.frame(a=runif(10),b=runif(10)) ggplot(x, aes(a,b)) + geom_point() + xlab("سلام") Here is the result: Here I tried to change the x-label as a Persian/Arabic word (سلام = Hello). While displayed correctly in the code (using R-Studio), in the graph the characters of سلام are displayed in the reverse order (left-to-right). Also the linkage between two consecutive letters (i.e. س connected to ل would be سل) is broken. Do you have any idea how to fix it? Update