Theme for theme_dbh_bubbles().

theme_dbh_bubbles(
  axis.text = element_blank(),
  panel.background = element_rect(fill = "white"),
  panel.grid.minor = element_blank(),
  panel.grid.major = element_blank(),
  legend.position = "none",
  plot.title = element_text(size = 20),
  plot.subtitle = element_text(size = 12),
  panel.border = element_rect(colour = "black", fill = NA),
  axis.ticks.length = unit(-0.1, "cm"),
  ...
)

Arguments

panel.background

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

legend.position

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

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

panel.border

border around plotting area, drawn on top of plot so that it covers tick marks and grid lines. This should be used with fill = NA (element_rect(); inherits from rect)

...

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 dbh bubbles: header_dbh_bubbles(), plot_dbh_bubbles_by_quadrat()

Examples

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