text_to_title.Rd
Text to Title Example
text_to_title(plot_title)
plot_title | Text. |
---|
ggplot object
text_to_title("My Title")# Code text_to_title#> function(plot_title) { #> ggplot(data.frame(x = 1:10), aes(x = x, y = x)) + #> geom_point() + #> ggtitle(plot_title) #> } #> <environment: namespace:SepalsAndPetals>