Text to Title Example

text_to_title(plot_title)

Arguments

plot_title

Text.

Value

ggplot object

Examples

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>