theme_tidyplot | R Documentation |
Themes
theme_tidyplot(plot, fontsize = 7)
theme_ggplot2(plot, fontsize = 7)
theme_minimal_xy(plot, fontsize = 7)
theme_minimal_x(plot, fontsize = 7)
theme_minimal_y(plot, fontsize = 7)
plot |
A |
fontsize |
Font size in points. Defaults to |
A tidyplot
object.
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points() |>
add_sem_errorbar() |>
add_mean_dash() |>
theme_tidyplot()
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points() |>
add_sem_errorbar() |>
add_mean_dash() |>
theme_ggplot2()
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points() |>
add_sem_errorbar() |>
add_mean_dash() |>
theme_minimal_xy()
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points() |>
add_sem_errorbar() |>
add_mean_dash() |>
theme_minimal_x()
study |>
tidyplot(x = treatment, y = score, color = treatment) |>
add_data_points() |>
add_sem_errorbar() |>
add_mean_dash() |>
theme_minimal_y()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.