Time | Subject | Teacher | Materials |
---|---|---|---|
9:00 | Walk-in & setup troubleshooting | ||
9:30 | Introduction | Claudiu Forgaci | Introduction |
10:00 | Project organization | Barbara Vreede | Organization slides |
11:00 | Coffee break | ||
11:15 | Automating with R | Barbara Vreede | Automation workflow |
12:30 | Lunch break | ||
13:30 | Automating with R | Barbara Vreede | |
14:00 | Literate programming | Claudiu Forgaci | Literate programming |
15:00 | Coffee break | ||
15:15 | Literate programming | Claudiu Forgaci | |
15:45 | Publication | Claudiu Forgaci | Sharing, publishing, archiving |
16:30 | Wrap-up & drinks |
- Install R from https://cran.rstudio.com/
- Install Rstudio from https://www.rstudio.com/products/rstudio/download/#download
- Install Tidyverse from Rstudio:
- Open Rstudio
- Look for a window that says 'console' (probably bottom left of your screen).
- In the console, type:
install.packages("tidyverse")
, then hit 'enter'. - In case the question
Do you want to install from sources the package which needs compilation? (Yes/no/cancel)
pops up, answerno
.
- Finally, confirm that tidyverse is installed:
- Find the 'console' window, and type:
library(tidyverse)
, then hit 'enter'. - You should see something that looks like this:
── Attaching packages ───────────────────────────────────────── tidyverse 1.3.2 ── ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ✔ tibble 3.1.8 ✔ dplyr 1.0.9 ✔ tidyr 1.2.0 ✔ stringr 1.4.1 ✔ readr 2.1.2 ✔ forcats 0.5.2 ── Conflicts ──────────────────────────────────────────── tidyverse_conflicts() ── ✖ dplyr::filter() masks stats::filter() ✖ dplyr::lag() masks stats::lag()
- Find the 'console' window, and type: