Learn R Programming

CurricularComplexity (version 1.0)

transfer_excess_courses: Finds the subcomplexity graph of courses beyond expected time to degree

Description

This function takes in a plan of study and the expected time to degree, then outputs a subcomplexity graph that contains all of the courses beyond the time to degree and their prerequisites.

Usage

transfer_excess_courses(
  plan_of_study,
  expected_time_to_degree,
  include_coreqs = TRUE
)

Value

igraph object - the subcomplexity graph

Arguments

plan_of_study

igraph object - An igraph object created using the create_plan_of_study function

expected_time_to_degree

Numeric - The term where students are expected to finish (often 8)

include_coreqs

Logical - Calculates the delay factor using corequisites, default value is TRUE