adjust_title {tidyplots} | R Documentation |
Adjust titles and caption
adjust_title(plot, title = ggplot2::waiver())
adjust_x_axis_title(plot, title = ggplot2::waiver())
adjust_y_axis_title(plot, title = ggplot2::waiver())
adjust_caption(plot, caption = ggplot2::waiver())
plot |
A |
title |
Plot or axes title. |
caption |
Plot caption. |
Adjust the plot title, axis titles and caption
All functions support plotmath expressions to include special characters. See examples and Advanced plotting.
A tidyplot
object.
# Plot without adjustments
study %>%
tidyplot(x = treatment, y = score, color = treatment) %>%
add_data_points() %>%
add_mean_bar(alpha = 0.4) %>%
add_sem_errorbar()
# Adjust description
study %>%
tidyplot(x = treatment, y = score, color = treatment) %>%
add_data_points() %>%
add_mean_bar(alpha = 0.4) %>%
add_sem_errorbar() %>%
adjust_title("This is my fantastic plot title") %>%
adjust_x_axis_title("Treatment group") %>%
adjust_y_axis_title("Disease score") %>%
adjust_legend_title("Legend title") %>%
adjust_caption("Here goes the caption")
# Plotmath expressions
study %>%
tidyplot(x = treatment, y = score, color = treatment) %>%
add_data_points() %>%
add_mean_bar(alpha = 0.4) %>%
add_sem_errorbar() %>%
adjust_title("$H[2]*O$") %>%
adjust_x_axis_title("$H[2]*O$") %>%
adjust_y_axis_title("$H[2]*O$") %>%
adjust_legend_title("$H[2]*O$") %>%
adjust_caption("$H[2]*O$")