04: Customizing plots

Author
Affiliation

Prof Amanda Luby

Carleton College
Stat 220 - Spring 2025

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://math.carleton.edu/aluby/stat220/survivor_season_summary.csv") |>
  separate(timeslot, into = c("day_of_week", "time"))

Make histogram

# Include your code here