This section will contain annotated R code along with worked out examples. If time permits, I will also include videos of me life-coding, so you can see me making programming mistakes in real time!

Useful resources for learning R, the tidyverse and Rmarkdown basics include

To install all R packages used throughout the course, use the command

Code
lib <- c("afex", "car", "emmeans", "effectsize", 
         "lme4", "lmerTest", "mediate", "nlme", 
         "pwr", "tidyverse", "tidymodels", "WebPower")
install.packages(lib)