theme_glyph {sugarglider} | R Documentation |
Customized Theme for Glyph Plots
Description
'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.
Usage
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))
)
Arguments
control |
A list specifying the relative font sizes for different plot elements. The list can contain the following components:
|
Details
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.
Value
A ggplot2 theme object with customized settings for glyph plots.
See Also
[ggthemes::theme_map()], [ggplot2::theme()]
Examples
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()