l_getSubtitles {loon.ggplot} | R Documentation |
Return the subtitles
Description
Return the subtitles
Usage
l_getSubtitles(target)
## S3 method for class 'l_facet_ggplot'
l_getSubtitles(target)
## S3 method for class 'l_facet_wrap'
l_getSubtitles(target)
## S3 method for class 'l_facet_grid'
l_getSubtitles(target)
Arguments
target |
an |
Value
A list of labels, i.e. subtitles, labels, title, etc
Examples
if(interactive()) {
p <- ggplot(mpg, aes(displ, hwy)) +
geom_point() +
facet_wrap(vars(class))
lp <- loon.ggplot(p)
l_getSubtitles(lp)
}
[Package loon.ggplot version 1.3.4 Index]