Theme for plot_base_census()
.
theme_tag_status(
panel.grid.major = element_line(colour = "black"),
panel.grid.minor = element_line(colour = "black", linetype = "dotted"),
panel.background = element_rect(fill = "white"),
plot.title = element_text(size = 20),
plot.subtitle = element_text(size = 12),
plot.caption = element_text(size = 8),
legend.position = "top",
legend.title = element_blank(),
axis.ticks = element_blank(),
axis.text = element_text(size = 12),
...
)
background of plotting area, drawn underneath plot
(element_rect()
; inherits from rect
)
plot title (text appearance) (element_text()
; inherits
from title
) left-aligned by default
plot subtitle (text appearance) (element_text()
;
inherits from title
) left-aligned by default
caption below the plot (text appearance)
(element_text()
; inherits from title
) right-aligned by default
the position of legends ("none", "left", "right", "bottom", "top", or two-element numeric vector)
title of legend (element_text()
; inherits from
title
)
additional element specifications not part of base ggplot2. In general,
these should also be defined in the element tree
argument.
Other functions to plot tag status:
header_tag_status()
,
plot_tag_status_by_subquadrat()
class(theme_tag_status())
#> [1] "theme" "gg"