createAssessmentStructure
is a function for creating an
assessment_structure
object that defines the structure of the assessment.
createAssessmentStructure(
n_test,
n_phase,
route_limit_below,
route_limit_above,
test_routing_restrictions = c("R1", "R2", "R3")
)
a numeric, the number of test administrations.
a numeric, the number of phases within each test.
the number of grades to allow routing below, relative to the grade of record. If the grade of record is G4 and this is 1, then routing to G3 is allowed but not to G2.
the number of grades to allow routing above, relative to the grade of record. If the grade of record is G4 and this is 2, then routing to G6 is allowed but not to G7.
the restrictions for between-test routing. (default = c("R1", "R2", "R3")
)
an assessment_structure
object.
assessment_structure <- createAssessmentStructure(
n_test = 3,
n_phase = 2,
route_limit_below = 1,
route_limit_above = 2
)