| aes {ggplot2} | R Documentation |
<br /> Aesthetic mappings describe how variables in the data are mapped <br /> to visual properties (aesthetics) of geoms. Aesthetic mappings <br /> can be set in ggplot() and in individual layers.
aes(
x = NULL,
y = NULL,
z = NULL,
label = NULL,
color = NULL,
colour = NULL,
alpha = NULL,
fill = NULL,
title = NULL,
shape = NULL,
class = NULL,
size = NULL,
group = NULL,
... = NULL);
This function also standardises aesthetic names by converting color to colour (also in substrings, e.g., point_color to point_colour) and translating old style R names to ggplot names (e.g., pch to shape and cex to size).
A list with class uneval. Components of the list are either quosures or constants.