cdss_read_skill_assignment_ods expects an ODS-file with two sheets assigning taught and
required, respectively, skills to learning objects with two columns each. The first
column contains the IDs of learning objects and the second row the IDs of single skills
required or taught, respectively, by this learning object.
It returns a list of two binary matrices, "taught" and "required". Each matrix has one
row per learning object and one column per skill. The cells contain a "1" if the skill
is taught or required, respectively, by the learning object and a "0" otherwise,
cdss_read_skill_assignment_ods(
filename,
taughtname = "Taught",
requiredname = "Required",
warnonly = FALSE,
verbose = TRUE
)List of two binary matrices, "taught" and "required".
Name of the ODS-file
Name of the sheet with required assignment (default = "Taught")
Name of the sheet with required assignment (default = "Required")
Are non-compliant SAs allowed? (default = FALSE)
Verbosity of compliance test (default = TRUE)
Other functions reading skill assignments:
cdss_read_skill_assignment_csv(),
cdss_read_skill_assignment_xlsx(),
cdss_wf_read_skill_assignment()