Generate ggplot aesthetic instructions
Usage
.buildAes(
x = TRUE,
y = TRUE,
color = FALSE,
shape = FALSE,
size = FALSE,
fill = FALSE,
group = FALSE,
alt = NULL
)
Arguments
- x
A
logical
that indicates whether to enablex
in the aesthetic instructions (default:TRUE
).- y
A
logical
that indicates whether to enabley
in the aesthetic instructions (default:TRUE
).- color
A
logical
that indicates whether to enablecolor
in the aesthetic instructions (default:FALSE
).- shape
A
logical
that indicates whether to enableshape
in the aesthetic instructions (default:FALSE
).- size
A
logical
that indicates whether to enablesize
in the aesthetic instructions (default:FALSE
).- fill
A
logical
that indicates whether to enablefill
in the aesthetic instructions (default:FALSE
).- group
A
logical
that indicates whether to enablegroup
in the aesthetic instructions (default:FALSE
).- alt
Alternative aesthetics, supplied as a named character vector.
Value
Aesthetic instructions for ggplot
as a character
value.