Aesthetic Mappings; Clutter is Your Enemy!; Design with Colorblind in Mind
October 31, 2024
In the plot above, one group of points (highlighted in red) seems to fall outside of the linear trend.
An aesthetic is a visual property (e.g., size
, shape
, color
) of the objects (e.g., class
) in your plot.
You can display a point in different ways by changing the values of its aesthetic properties.
color
to the plotshape
to the plotsize
to the plotcolor
to the plot, manuallycolor
to the plot, manuallyfill
to the plot, manuallygeom_*()
has a different set of aesthetic parameters.
fill
is available for geom_smooth()
, not geom_point()
.size
to the plot, manuallyalpha
to the plot, manuallygeom_*()
outside of aes()
\(\log_{10}\,(\,100\,)\): the base \(10\) logarithm of \(100\) is \(2\), because \(10^{2} = 100\)
\(\log_{e}\,(\,x\,)\): the base \(e\) logarithm is called the natural log, where \(e = 2.718\cdots\) is the mathematical constant, the Eulerβs number.
\(\log\,(\,x\,)\) or \(\ln\,(\,x\,)\): the natural log of \(x\) .
\(\log_{e}\,(\,7.389\cdots\,)\): the natural log of \(7.389\cdots\) is \(2\), because \(e^{2} = 7.389\cdots\).
In R,
log(x)
: log of x
with base e, called natural log.log10(x)
: log of x
with base 10.\[ \Delta \log(x) = \log(x_{1}) - \log(x_{0}) \approx \frac{x_{1} - x_{0}}{x_{0}} = \frac{\Delta x}{x_{0}}. \]
Types of Colorblindness
Roughly 8% of men and half a percent of women are colorblind.
There are several techniques to make visualization more colorblind-friendly:
shape
for scatterplots and linetype
for line chartsggthemes
packageggthemes
package provides various themes for ggplot2
visualization:
scale_color_colorblind()
, scale_color_tableau()
theme_economist()
, theme_wsj()
ggthemes::scale_color_colorblind()
color
in aes()
, we can use scale_color_*()
ggthemes::scale_color_tableau()
scale_color_tableau()
provides color palettes used in Tableau.ggplot
Themesggthemes::theme_economist()
theme_economist()
approximates the style of The Economist.ggplot
Themesggthemes::theme_wsj()
theme_wsj()
approximates the style of The Wall Street Journal.