theme_glyph | R Documentation |
'theme_glyph()' provides a customized theme for glyph maps, built on top of ‘theme_map()' from 'ggthemes'. It adjusts the plot’s appearance, including the legend position, text styles, and background settings, to create a clean, visually consistent layout for glyph visualizations.
theme_glyph(
control = list(plot.title = rel(1.5), plot.subtitle = rel(1.3), plot.caption = rel(1),
legend.text = rel(1), legend.title = rel(1))
)
control |
A list specifying the relative font sizes for different plot elements. The list can contain the following components:
|
This theme includes:
Legend positioned inside the plot, at the bottom left corner.
Horizontal legend direction with 'mono' font for text.
Centered plot titles with bold, 'mono' font.
'mono' fonts for subtitles and captions.
White background for both the panel and plot.
A ggplot2 theme object with customized settings for glyph plots.
[ggthemes::theme_map()], [ggplot2::theme()]
library(ggplot2)
library(ozmaps)
aus_temp |>
ggplot(aes(x_major = long, y_major = lat,
x_minor = month, ymin_minor = tmin,
ymax_minor = tmax)) +
geom_sf(data = abs_ste, fill = "antiquewhite",
inherit.aes = FALSE, color = "white") +
add_glyph_boxes() +
add_ref_lines() +
geom_glyph_ribbon() +
theme_glyph()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.