trail_icr(
x,
id_col = "id",
label_col = "label",
min_coders = 2L,
icr_fun = validate,
...
)The result of calling icr_fun() on the wide data.
With the default validate(), this is a named list of
inter-rater reliability statistics.
A trail_compare object or a list of trail_record
objects.
Character scalar. Name of the unit identifier column in the resulting wide data (defaults to "id").
Character scalar. Name of the label column in each record's annotations (defaults to "label").
Integer. Minimum number of non-missing coders per unit required for inclusion.
Function used to compute inter-rater reliability.
Defaults to validate(), which is expected to accept
data, id, coder_cols, min_coders,
and mode = "icr". It should also understand
output = "list" to return a named list of statistics.
Additional arguments passed on to icr_fun.
trail_icr() is deprecated. Use qlm_compare() to compute inter-rater
reliability across multiple coded objects.
trail_compare() – run the same task across multiple settings
trail_matrix() – underlying wide data used here
validate() – core validation / ICR engine