Looking forward to seeing you in San Francisco soon!
As you prepare, you can:
In particular, I'm copying below the information from the GitHub repo on the materials for the workshop and the setup should do before arriving.
Materials
Materials will be made available on github. If you are using an organization-issued laptop, you may want to verify before you arrive that you can access GitHub.
The materials will evolve as the workshop approaches, so if you want to pre-download the materials, please wait until the day before the workshop.
Setup
Please make sure you’ve installed the following packages:
install.packages("devtools")
install.packages(c("fs", "glue", "lobstr", "rematch2", "sloop", "vctrs"))
devtools::install_github("r-lib/itdepends")
# You may also need:
install.packages(c("ggplot2", "dplyr", "stringr"))
# And get the package we'll work with later:
usethis::create_from_github("hadley/fordogs", fork = FALSE)
# if you see an error about "unsupported protocol", try this:
usethis::create_from_github("hadley/fordogs", fork = FALSE, protocol = "https")