Skip to contents

[Deprecated]

Usage

trail_icr(
  x,
  id_col = "id",
  label_col = "label",
  min_coders = 2L,
  icr_fun = validate,
  ...
)

Arguments

x

A trail_compare object or a list of trail_record objects.

id_col

Character scalar. Name of the unit identifier column in the resulting wide data (defaults to "id").

label_col

Character scalar. Name of the label column in each record's annotations (defaults to "label").

min_coders

Integer. Minimum number of non-missing coders per unit required for inclusion.

icr_fun

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.

Value

The result of calling icr_fun() on the wide data. With the default validate(), this is a named list of inter-rater reliability statistics.

Details

trail_icr() is deprecated. Use qlm_compare() to compute inter-rater reliability across multiple coded objects.

See also