update_labels {ggplot2} | R Documentation |
Change the scale names of an existing plot
update_labels(p, labels)
p |
plot |
labels |
Hadley Wickham <h.wickham@gmail.com>
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"))