Match packages to what we're installing on travis

This commit is contained in:
hadley 2015-12-07 14:01:40 -06:00
parent 0326a7b010
commit 12d968d6f2
1 changed files with 3 additions and 3 deletions

View File

@ -133,9 +133,9 @@ You'll also need to install some R packages. An R _package_ is a collection of f
```{r}
pkgs <- c(
"DBI", "devtools", "dplyr", "ggplot2", "haven", "knitr", "lubridate",
"packrat", "readr", "rmarkdown", "RSQLite", "rvest", "scales", "shiny",
"stringr", "tidyr"
"bookdown", "broom", "dplyr", "ggplot2", "jpeg", "jsonlite",
"knitr", "microbenchmark", "png", "pryr", "purrr", "readr", "stringr",
"tidyr"
)
install.packages(pkgs)
```