ggplot_translator | R Documentation |
Translate axis label of a ggplot
ggplot_translator(
gg,
which = c("x", "y"),
from = "en",
to = "zh",
keep_original_label = FALSE,
original_sep = "\n",
verbose = TRUE
)
gg |
a ggplot object to be translated |
which |
vector contains one or more of 'x', 'y', 'label', 'fill', 'color'..., or 'facet_x', 'facet_y', 'labs' and 'all' to select which texts to be translated. |
from |
source language |
to |
target language |
keep_original_label |
keep the source language labels |
original_sep |
default, '\n' |
verbose |
verbose |
ggplot
## Not run:
df <- data.frame(
Subject = c("English", "Math"),
Score = c(59, 98), Motion = c("sad", "happy")
)
ggp <- ggplot(df, mapping = aes(x = Subject, y = Score, label = Motion)) +
geom_text() +
geom_point() +
labs(x = "Subject", y = "Score", title = "Final Examination")
ggplot_translator(ggp, which = "all")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.