theme_meow | R Documentation |
Use miao-preferred ggplot2 theme, ideal for publishing from Quarto.
theme_meow(
axis.title = 14,
axis.text = 10,
strip.text = 10.5,
legend.text = 10.25,
strip.bg = "white",
plot.bg = "white",
line.col = "#838383"
)
axis.title |
Text size for axis title. |
axis.text |
Text size for axis text. |
strip.text |
Text size for facet strips. |
legend.text |
Text size for legend. |
line_col |
Color for axis lines and ticks; defaults to dark grey. |
Theme ready for adding to ggplot2 object.
tibble::tibble(x = 1:10,
y = 10:1) |>
ggplot(aes(x = x, y = y)) +
geom_point() +
theme_meow()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.