calc: Calculated aesthetics

Description Usage Arguments Details Examples

View source: R/aes-calculated.r

Description

Most aesthetics are mapped from variables found in the data. Sometimes, however, you want to map from variables computed by the aesthetic. The most common example of this is the height of bars in geom_histogram(): the height does not come from a variable in the underlying data, but is instead mapped to the count computed by stat_bin(). The calc() function is a flag to ggplot2 to it that you want to use calculated aesthetics produced by the statistic.

Usage

1

Arguments

x

An aesthetic expression using variables calculated by the stat.

Details

This replaces the older approach of surrounding the variable name with ...

Examples

1
2
3
4
5
6
7
# Default histogram display
ggplot(mpg, aes(displ)) +
  geom_histogram(aes(y = calc(count)))

# Scale tallest bin to 1
ggplot(mpg, aes(displ)) +
  geom_histogram(aes(y = calc(count / max(count))))

SahaRahul/ggplot2 documentation built on May 17, 2019, 1:46 p.m.