04: Customizing plots

Author
Affiliation

Prof Amanda Luby

Carleton College
Stat 220 - Winter 2026

Tip

If you need a refresher for how to access the quarto file from this document, see Activity01

Load Data

Note: This code reads the same dataset in that we used last time and then creates two new columns based on an old one. Make sure to run this chunk before trying to make your graph!

season_summary = readr::read_csv("https://raw.githubusercontent.com/stat220-w26/stat220-w26.github.io/refs/heads/main/data/survivor_season_summary.csv") |>
  separate(timeslot, into = c("day_of_week", "time"))

Replicate histogram

# Include your code here