Software

You need a fully charged laptop (or a seat neighbour sharing one with you) with working installations of:

  1. R (with basic know-how)

  2. Your favourite editor/IDE

  3. the R package surveillance and some others:

    install.packages(c("surveillance", "sf", "ggplot2", "fanplot"))
  4. optionally, for advanced exercises, the experimental R package hhh4addon:

    ## install.packages("remotes")
    remotes::install_github("jbracher/hhh4addon")

Try:

library("surveillance")
This is surveillance 1.23.1; see 'package?surveillance' or
https://surveillance.R-Forge.R-project.org/ for an overview.

Data and R script templates

tutorials.zip

.
├── data
│   ├── data_BE.RData
│   ├── ECDC_surveillance_data_IMD.csv.gz
│   ├── Eurostat_population_2018.csv
│   ├── map.RData
│   └── temperature_berlin.csv
├── multivariate.R
├── multivariate_solution.R
├── sts.R
├── sts_solution.R
├── univariate.R
└── univariate_solution.R

1 directory, 11 files

Extract this archive into a fresh directory for the workshop. This should become the working directory.

We recommend to essentially ignore the *_solution.R files. These are meant as a take-away. Solutions to individual tasks can also be found on the web pages of the tutorials by clicking on

Solution