powered by
Performs an intercoder reliability test by computing various intercoder reliability estimates for the included variables
test_icr(data, unit_var, coder_var, ..., levels = NULL, na.omit = FALSE, agreement = TRUE, holsti = TRUE, kripp_alpha = TRUE, cohens_kappa = FALSE, fleiss_kappa = FALSE, brennan_prediger = FALSE)
a tibble
Variable with unit identifiers
Variable with coder identifiers
Variables to compute intercoder reliability estimates for. Leave empty to compute for all variables (excluding unit_var and `coder_var``) in data.
unit_var
Optional named vector with levels of test variables
Logical indicating whether NA values should be stripped before computation. Defaults to FALSE.
NA
FALSE
Logical indicating whether simple percent agreement should be computed. Defaults to TRUE.
TRUE
Logical indicating whether Holsti's reliability estimate (mean pairwise agreement) should be computed. Defaults to TRUE.
Logical indicating whether Krippendorff's Alpha should be computed. Defaults to TRUE.
Logical indicating whether Cohen's Kappa should be computed. Defaults to FALSE.
Logical indicating whether Fleiss' Kappa should be computed. Defaults to FALSE.
Logical indicating whether Brennan & Prediger's Kappa should be computed. Defaults to FALSE.
Other intercoder reliability: compute_icr, icr_agreement, icr_brennan_prediger, icr_cohens_kappa, icr_fleiss_kappa, icr_holstis_CR, icr_kripp_alpha, unit_coder_matrix
compute_icr
icr_agreement
icr_brennan_prediger
icr_cohens_kappa
icr_fleiss_kappa
icr_holstis_CR
icr_kripp_alpha
unit_coder_matrix
# NOT RUN { fbposts %>% test_icr(post_id, coder_id, pop_elite, pop_othering) fbposts %>% test_icr(post_id, coder_id, levels = c(n_pictures = "ordinal"), fleiss_kappa = TRUE) # }
Run the code above in your browser using DataLab