ggplot2 (version 0.9.1)

update_labels: Update axis/legend labels

Description

Update axis/legend labels

Usage

update_labels(p, labels)

Arguments

p
plot to modify
labels
named list of new labels

Examples

Run this code
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"))

Run the code above in your browser using DataCamp Workspace