Combine a schedule data frame, containing class descriptions,
reading assignments, and homework assignments, along with
other data, merge them, and pivot to a wide format, where
every calendar entry has a column for the reading assignment,
homework due that day, and other information.
Usage
schedule_widen(
  schedule,
  final_exams,
  semester,
  final_is_take_home = TRUE,
  create_paths = TRUE
)Arguments
- schedule
 A
scheduledata frame, as returned frominit_schedule().- final_exams
 DESCRIPTION.
- semester
 A
semesterobject (a list), as returned fromload_semester_db()- final_is_take_home
 DESCRIPTION.
- create_paths
 DESCRIPTION.