forked from clauswilke/dataviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
technical_notes.Rmd
44 lines (40 loc) · 1.36 KB
/
technical_notes.Rmd
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
```{r echo = FALSE, message = FALSE, warning = FALSE}
# run setup script
source("_common.R")
library(tidyverse)
library(lubridate)
library(patchwork)
library(ggforce)
library(ggrepel)
library(ggridges)
library(ggthemes)
library(ggmap)
library(gridExtra)
library(treemapify)
library(hexbin)
library(magick)
library(plot3D)
library(geofacet)
library(ggspatial)
library(rgeos)
library(maptools)
library(sf)
library(statebins)
library(maps)
library(tidybayes)
library(broom)
library(mgcv)
library(emmeans)
library(ungeviz)
library(gganimate)
library(RColorBrewer)
library(gapminder)
library(nycflights13)
```
# Technical notes {-}
The entire book was written in R Markdown, using the **bookdown**, **rmarkdown**, and **knitr** packages. All figures were made with **ggplot2**, with the help of add-on packages **cowplot**, **egg**, **ggforce**, **ggrepel**, **ggridges**, **sf**, and **treemapify**. Color manipulations were done with the **colorspace** and **colorblindr** packages. For many of these packages, the current development version is required to compile all parts of the book.
The source code for the book is available here: https://github.com/clauswilke/dataviz. The book also requires a supporting R package, **dviz.supp**, whose code is available here: https://github.com/clauswilke/dviz.supp.
The book was last compiled using the following environment:
```{r}
sessionInfo()
```