cdss_read_skill_assignment expects two CSV-files 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_csv(
taught,
required,
header = TRUE,
sep = ",",
dec = ".",
warnonly = FALSE,
verbose = TRUE
)List of two binary matrices, "taught" and "required".
CSV-file with assignments of taught competencies to learning objects
CSV-file with assignments of required competencies to learning objects
Boolean specifying whether the CSV-files contain a header line (default = TRUE)
Column separator (default ",")
Decimal point character (default ".")
Are non-compliant SAs allowed? (default = FALSE)
Verbosity of compliance test (default = TRUE)
Other functions reading skill assignments:
cdss_read_skill_assignment_ods(),
cdss_read_skill_assignment_xlsx(),
cdss_wf_read_skill_assignment()