I am making a plot
p <- qplot(mpg, wt, data = mtcars, colour = cyl)
p + labs(colour = "Cylinders")
here, I get a picture with legend "Cylinders", and values 2,4,6,8,10. Can I change those values to "two", "four"...etc without going back to the dataset to change the names?
Thank you