| update_geom_defaults {ggplot2} | R Documentation |
Modify geom aesthetic defaults for future plots
update_geom_defaults(geom, new)
geom |
name of geom to modify |
new |
named list of aesthetics |
Hadley Wickham <h.wickham@gmail.com>
update_geom_defaults("point", list(colour = "darkblue"))
qplot(mpg, wt, data = mtcars)
update_geom_defaults("point", list(colour = "black"))