Learn R Programming

CurricularComplexity (version 1.0)

find_outbound_courses: Find all possible courses that depend on a particular course

Description

This function takes in a plan of study and a course, then finds all the courses it is related to through its prerequisites (after the course).

Usage

find_outbound_courses(plan_of_study, course)

Value

An atomic vector of vertex ids for the course's following courses

Arguments

plan_of_study

An igraph object created using the create_plan_of_study function

course

The course to find all relevant courses that directly or indirectly have it as a prereq