-
Notifications
You must be signed in to change notification settings - Fork 65
/
00-install.R
27 lines (22 loc) · 1.14 KB
/
00-install.R
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
# Because of our limited time, it is critical that you arrive
# with all of the necessary software and R packages installed.
# If you are having any issues with this, first see if there is
# a colleague who can help you. If you are stuck, please get in
# touch with me (Sean, sandrsn "at" uw.edu) before the workshop.
# The following R code should walk you through it.
# You will need to have the latest version of R, version 3.3.2.
# Check with:
sessionInfo()
# You can get the latest version at:
# https://cran.r-project.org/
# You will need to have the latest version of RStudio (1.0.44 or greater).
# You can check with RStudio -> About RStudio on Mac, Help -> About RStudio on Windows.
# You can get the latest version at:
# https://www.rstudio.com/products/rstudio/download/
# Install the following packages:
install.packages(c("tidyverse", "lme4", "nlme", "manipulate", "rstanarm",
"simr", "TMB", "gapminder", "aods3", "emdbook", "AER", "arm", "rmarkdown",
"ggeffects", "sjPlot", "bbmle", "MuMIn", "broom", "broom.mixed", "glmmTMB"),
dependencies = TRUE)
## Please get in touch if you have not been successful at
## installing any of these packages.