Created
July 23, 2020 12:48
-
-
Save hadley/a1155600d0c7d694bd93393ee8c54508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ggplot2) | |
x <- c("بقرة", "دجاج", "حصان") | |
df <- data.frame(x = x, y = 1:3) | |
labels_rtl <- function(x) paste0("\u202B", x) | |
ggplot(df, aes(x, y)) + | |
geom_point() + | |
scale_x_discrete(labels = labels_rtl) + | |
theme_grey(20) + | |
labs(x = NULL, y = NULL) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment