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),
  ...
)

Arguments

panel.background

background of plotting area, drawn underneath plot (element_rect(); inherits from rect)

plot.title

plot title (text appearance) (element_text(); inherits from title) left-aligned by default

plot.subtitle

plot subtitle (text appearance) (element_text(); inherits from title) left-aligned by default

plot.caption

caption below the plot (text appearance) (element_text(); inherits from title) right-aligned by default

legend.position

the position of legends ("none", "left", "right", "bottom", "top", or two-element numeric vector)

legend.title

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.

See also

Other functions to plot tag status: header_tag_status(), plot_tag_status_by_subquadrat()

Examples

class(theme_tag_status())
#> [1] "theme" "gg"