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} ```{r}
pkgs <- c( pkgs <- c(
"DBI", "devtools", "dplyr", "ggplot2", "haven", "knitr", "lubridate", "bookdown", "broom", "dplyr", "ggplot2", "jpeg", "jsonlite",
"packrat", "readr", "rmarkdown", "RSQLite", "rvest", "scales", "shiny", "knitr", "microbenchmark", "png", "pryr", "purrr", "readr", "stringr",
"stringr", "tidyr" "tidyr"
) )
install.packages(pkgs) install.packages(pkgs)
``` ```