Add a subtitle or panel subtitle

agg_subtitle(text, panel = NULL)

Arguments

text

A string for the subtitle.

panel

(optional) Specify a panel identifier to add a panel subtitle instead of an overall graph subtitle. You can specify a vector of panels (e.g. `panel = c("1","3")`) to apply the subtitle to multiple panels at once.

See also

vignette("plotting-options", package = "arphit") for a detailed description of all the plotting options

Examples

arphitgg(data) + agg_subtitle("Graph Subtitle")
#> dev.new(): using pdf(file="Rplots132.pdf")
arphitgg(data) + agg_subtitle("Panel subtitle", panel = "1")
#> dev.new(): using pdf(file="Rplots133.pdf")