1. Install R on the computer you will use during the course (https://cran.r-project.org/). I assume that you already have it installed, but try to update it if you have an R version < 4.0.0. You can find which R version you have by running this in the R console:
version$version.string
  1. Install the RStudio interface (https://www.rstudio.com/products/rstudio/download/, choose the free version). Optional but advised.

  2. Open RStudio and select the tab “Tools” then “Global Options” (last option). Select the “Code” option, then select the box for “Soft-wrap R source files”.

  3. Also in Rstudio: Select the “Pane Layout” option and move “Source” to the top left pane and “Console” to the top right pane. For those of you unfamiliar with RStudio, the source is your script, where you save code in a physical file (usually .R script) and the console prints the output of the code you run from the source. You can write code in the console, but it will not be saved in a physical file. This layout allocates more screen space to the most useful panes. Hit “Apply” and “Ok”.

  4. Now in the R console in Rstudio: Run the following code to install the latest developmental versions (from github) of warbleR, Rraven, PhenotypeSpace, ohun, baRulho and dynaSpec (remove the packages first if you have them installed already).

install.packages("ggplot2") 
install.packages("lme4")
install.packages("MASS")
install.packages("viridis")
install.packages("lmerTest")
install.packages("sjPlot")

 

A few tips to ensure you will take full advantage of the course:

 

 

Take a look at the R basics tutorial ahead of the workshop (if possible!)