update_labels {ggplot2} | R Documentation |
Update axis/legend labels
update_labels(p, labels)
p |
plot to modify |
labels |
named list of new labels |
p <- qplot(mpg, wt, data = mtcars) update_labels(p, list(x = "New x")) update_labels(p, list(x = expression(x / y ^ 2))) update_labels(p, list(x = "New x", y = "New Y")) update_labels(p, list(colour = "Fail silently"))