forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaes_eval.Rd
75 lines (67 loc) · 3.08 KB
/
aes_eval.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/aes-evaluation.r
\name{aes_eval}
\alias{aes_eval}
\alias{after_stat}
\alias{stat}
\alias{after_scale}
\alias{stage}
\title{Control aesthetic evaluation}
\usage{
after_stat(x)
after_scale(x)
stage(start = NULL, after_stat = NULL, after_scale = NULL)
}
\arguments{
\item{x}{An aesthetic expression using variables calculated by the stat
(\code{after_stat()}) or layer aesthetics (\code{after_scale()}).}
\item{start}{An aesthetic expression using variables from the layer data.}
\item{after_stat}{An aesthetic expression using variables calculated by the
stat.}
\item{after_scale}{An aesthetic expression using layer aesthetics.}
}
\description{
Most aesthetics are mapped from variables found in the data. Sometimes,
however, you want to delay the mapping until later in the rendering process.
ggplot2 has three stages of the data that you can map aesthetics from. The
default is to map at the beginning, using the layer data provided by the
user. The second stage is after the data has been transformed by the layer
stat. The third and last stage is after the data has been transformed and
mapped by the plot scales. The most common example of mapping from stat
transformed data is the height of bars in \code{\link[=geom_histogram]{geom_histogram()}}:
the height does not come from a variable in the underlying data, but
is instead mapped to the \code{count} computed by \code{\link[=stat_bin]{stat_bin()}}. An example of
mapping from scaled data could be to use a desaturated version of the stroke
colour for fill. If you want to map directly from the layer data you should
not do anything special. In order to map from stat transformed data you
should use the \code{after_stat()} function to flag that evaluation of the
aesthetic mapping should be postponed until after stat transformation.
Similarly, you should use \code{after_scale()} to flag evaluation of mapping for
after data has been scaled. If you want to map the same aesthetic multiple
times, e.g. map \code{x} to a data column for the stat, but remap it for the geom,
you can use the \code{stage()} function to collect multiple mappings.
}
\details{
\code{after_stat()} replaces the old approaches of using either \code{stat()} or
surrounding the variable names with \code{..}.
}
\note{
Evaluation after stat transformation will only have access to the
variables calculated by the stat. Evaluation after scaling will only have
access to the final aesthetics of the layer (including non-mapped, default
aesthetics). The original layer data can only be accessed at the first stage.
}
\examples{
# Default histogram display
ggplot(mpg, aes(displ)) +
geom_histogram(aes(y = after_stat(count)))
# Scale tallest bin to 1
ggplot(mpg, aes(displ)) +
geom_histogram(aes(y = after_stat(count / max(count))))
# Use a transparent version of colour for fill
ggplot(mpg, aes(class, hwy)) +
geom_boxplot(aes(colour = class, fill = after_scale(alpha(colour, 0.4))))
# Use stage to modify the scaled fill
ggplot(mpg, aes(class, hwy)) +
geom_boxplot(aes(fill = stage(class, after_scale = alpha(fill, 0.4))))
}