E Versions of R Packages Used
If you are seeing different results than what is in the book, we recommend installing the exact version of the packages we used. This can be done by first installing the remotes
package via install.packages("remotes")
. Then, use install_version()
replacing the package
argument with the package name in quotes and the version
argument with the particular version number to install.2
package | version |
---|---|
bookdown | 0.16 |
broom | 0.5.2 |
dplyr | 0.8.3 |
dygraphs | 1.1.1.6 |
fivethirtyeight | 0.5.0 |
forcats | 0.4.0 |
gapminder | 0.3.0 |
ggplot2 | 3.2.1 |
ggplot2movies | 0.0.1 |
infer | 0.5.1 |
ISLR | 1.2 |
janitor | 1.2.0 |
kableExtra | 1.1.0 |
knitr | 1.26 |
moderndive | 0.4.0 |
mvtnorm | 1.0-11 |
nycflights13 | 1.0.1 |
patchwork | 0.0.1 |
purrr | 0.3.3 |
readr | 1.3.1 |
scales | 1.1.0 |
skimr | 1.0.6 |
stringr | 1.4.0 |
tibble | 2.1.3 |
tidyr | 1.0.0 |
tidyverse | 1.3.0 |
viridis | 0.5.1 |
viridisLite | 0.3.0 |
As of November 2019, the
patchwork
package is not on CRAN and needs to be installed viaremotes::install_github("thomasp85/patchwork")
instead of usinginstall_version()
.↩