adjust_theme_details | R Documentation |
This function is a wrapper around ggplot2::theme()
. To use the required theme
helper functions ggplot2::element_blank()
, ggplot2::element_rect()
,
ggplot2::element_line()
, and ggplot2::element_text()
you need to either load
the ggplot2 package via library(ggplot2)
or use the ggplot2::
prefix as shown above.
adjust_theme_details(plot, ...)
plot |
A |
... |
Arguments passed on to the |
A tidyplot
object.
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points_beeswarm() |>
add_mean_bar(alpha = 0.4) |>
adjust_theme_details(plot.background = ggplot2::element_rect(fill = "#FFEBFF"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.