ggtext {ggplot} | R Documentation |
Add text to a plot
ggtext(plot = .PLOT, aesthetics=list(), ..., data=plot$data)
plot |
the plot object to modify |
aesthetics |
named list of aesthetic mappings, see details for more information |
... |
other options, see details for more information |
data |
data source, if not specified the plot default will be used |
Aesthetic mappings that this grob function understands:
scsize)
sccolour)
These can be specified in the plot defaults (see ggplot
) or
in the aesthetics
argument. If you want to modify the position
of the points or any axis options, you will need to add a position scale to
the plot. These functions start with ps
, eg.
pscontinuous
or pscategorical
Other options:
textGrob for more details
Hadley Wickham <h.wickham@gmail.com>
p <- ggplot(mtcars, aesthetics=list(x=wt, y=mpg, labels = rownames(mtcars))) ggtext(p) ggtext(p, list(size=wt)) scsize(ggtext(p, list(size=wt)), c(0.5, 1.5)) ggtext(p, list(colour=cyl))