The following datasets will be used in the course:

airsat

Real data on the satisfaction and experience of 10,000 customers of an airline Info

# install.packages("readr")
airsat <- readr::read_csv("https://tinyurl.com/airsat-pm")

EMA

Real ecological momentary assessment (EMA) data on 80 undergraduate students in the Netherlands during the start of COVID (from Fried, Papanikolaou, & Epskamp, 2021) Info

# install.packages("readr")
ema <- readr::read_csv("https://tinyurl.com/ema-data-pm", col_types = cols(id = "f"))

penguins

Real data on 344 penguins observed at Palmer Station, Antarctica Info

# install.packages("palmerpenguins")
library(palmerpenguins)
penguins

titanic

Real data on 1,309 passengers on the Titanic Info

# install.packages("readr")
titanic <- readr::read_csv("https://tinyurl.com/titanic-pm")

water

Real data on the potability and chemical properties of 2,011 water bodies Info

# install.packages("readr")
water <- readr::read_csv("https://tinyurl.com/water-pm")