updateGrade {maat} | R Documentation |
Update the grade slot of an examinee object
Description
updateGrade
is a function for determining the grade an examinee is routed to.
Usage
updateGrade(
examinee_object,
assessment_structure,
module_position,
cut_scores,
transition_policy = "CI",
transition_CI_alpha,
transition_percentile_lower,
transition_percentile_upper,
item_pool
)
Arguments
examinee_object |
an |
assessment_structure |
an |
module_position |
the current module position, ranging from |
cut_scores |
a named list containing cut scores to be used in each grade. Each element must be named in the form |
transition_policy |
|
transition_CI_alpha |
the alpha level used when |
transition_percentile_lower |
the percentile value (between 0 and 1) used for the lower routing in percentile-based transition policies. |
transition_percentile_upper |
the percentile value (between 0 and 1) used for the upper routing in percentile-based transition policies. |
item_pool |
the |
Details
Currently the routing rules are hard-coded in the function. See the vignette for a description of routing rules.
Value
an examinee
object with its current_grade
slot updated.