Skip to contents

Determine if a course is a preparation (aka prep), honours (H), multi-diversity (I), national diversity (N), international and multicultural diversity (D), or writing (W) course based on the course code (crse_code). Theese designations are based on the "Definitions of Course Characteristics" document provided on the Office of the Registrar's website.

Usage

course.type(crse_code)

Arguments

crse_code

single character vector with the course code of interest.

Value

logical

Examples

crse_code <- "1831"
course.type(crse_code)
#> [1] "prep"
# "prep"

crse_code <- "1838"
is.prep(crse_code)
#> [1] FALSE
# ""