Allow user to define ggplot labels, and populate missing values from the
defaults specified in labels
formal argument.
Examples
fun <- function(
object,
labels = list(
"title" = NULL,
"x" = "x-axis",
"y" = "y-axis"
)) {
labels <- matchLabels(labels)
labels
}