get_title | R Documentation |
These functions extract just the titles from a ggplot. get_title()
pulls
the title, while get_subtitle()
pulls the subtitle.
get_title(plot)
get_subtitle(plot)
plot |
A ggplot or gtable. |
library(ggplot2)
p <- ggplot(mpg, aes(displ, cty)) +
geom_point() +
labs(
title = "Plot title",
subtitle = "Plot subtitle"
)
ggdraw(get_title(p))
ggdraw(get_subtitle(p))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.