# Load required libraries for data handling and visualization
library(tidyverse) # Includes ggplot2 and dplyr for plotting and data wrangling
library(lubridate) # For working with date columns
library(scales) # For formatting axis/legend labels (e.g., percentages)
library(viridis) # For colorblind-friendly color palettes
# Read the CSV file into R (update the filename/path if needed)
attendance_df <- read_csv("2018-2019_Daily_Attendance_20240429.csv")