I am generating a plot using the code below and would like to hide the "mag" (size) legend but still keep the "depth" (color) legend.
ggplot(quakes, aes(long, lat, size=mag, colour=depth)) + geom_point()
Try:
... + scale_size(guide="none") # As of Mar 2012 ... + scale_size(legend = FALSE) # Deprecated
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
2084 times
active
1 year ago