Is there an easy way how Hmisc labels that have been defined earlier appear in a complex R plot e.g. a SPLOM (scatter plot matrix)?
# defining labels
library(Hmisc)
label(mtcars$mpg) <- "Miles per gallon"
label(mtcars$qsec) <- "quarter mile time"
# SPLOM
library(psych)
pairs.panels(mtcars[, c("mpg", "qsec")])
In that case instead of "mpg" there should be "miles per gallon" in the plot.