Workshop Prep

Topics: Software; Notation

Welcome!

Getting ready for the workshop is entirely optional, but if you just can’t wait to start learning more about mixed models, here are a few helpful resources. Whether you want to explore the software we’ll use or get familiar with key notation, this is optional, but a good starting point.


  • Install R and RStudio: Install R and RStudio.
  • Install these R packages: We’ll need tidyverse, glmmTMB, DHARMa, car, emmeans, multcomp, and agridat. You can copy the following code and run it in your R console:
Embed R Code
install.packages("tidyverse")
install.packages("glmmTMB")
install.packages("DHARMa")
install.packages("car")
install.packages("emmeans")
install.packages("multcomp")
install.packages("agridat")