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"),
...
)
background of plotting area, drawn underneath plot
(element_rect()
; inherits from rect
)
the position of legends ("none", "left", "right", "bottom", "top", or two-element numeric vector)
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
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.
Other functions to plot dbh bubbles:
header_dbh_bubbles()
,
plot_dbh_bubbles_by_quadrat()
class(theme_dbh_bubbles())
#> [1] "theme" "gg"