dsu-effectiveness / usheUtils

A collection of functions used to create USHE reports.
Other
0 stars 0 forks source link

C_44, Instruction Type #99

Closed andreabringhurst closed 5 months ago

andreabringhurst commented 2 years ago

Need to move ENS from LEL to INV.

https://github.com/dsu-effectiveness/usheUtils/blob/8bb37ddceda5763f4689f40fa61e86e24e5002d1/R/courses.R#L1466

Should look like this: mutate(c_instruct_type = case_when( section_format_type_code %in% c("LEV", "LEX", "LES", "INS") ~ "LEC", section_format_type_code == "STU" ~ "LEL", section_format_type_code %in% c("LBV", "LBS", "LBC") ~ "LAB", section_format_type_code %in% c("PRA", "INT", "CLN") ~ "SUP", section_format_type_code %in% c("MUN", "MUM", "ACT", "ENS") ~ "INV", section_format_type_code == "CLS" ~ "OTH", TRUE ~ section_format_type_code)) %>%

cdemkegit commented 2 years ago

Made that change.

cdemkegit commented 5 months ago

this has been fixed