finn_1970 | R Documentation |
5 raters classified 4 subjects into 3 categories labeled as 1, 2, 3.
finn_1970
A tibble with 4 observations (1, 2, 3) on 5 variables representing different raters and one variable for subject ID.
Subject ID
a factor including the ratings of rater_I (1, 2, 3)
a factor including the ratings of rater_II (1, 2, 3)
a factor including the ratings of rater_III (1, 2, 3)
a factor including the ratings of rater_IV (1, 2, 3)
a factor including the ratings of rater_V (1, 2, 3)
Finn, R.H. (1970). A note on estimating the reliability of categorical data. Educational and Psychological Measurement, 30, 71-76.
Finn, R.H. (1970). A note on estimating the reliability of categorical data. Educational and Psychological Measurement, 30, 71-76.
finn_1970
library(dplyr)
library(tidyr)
finn_1970 %>%
tidyr::gather(.,
key = "rater",
value = "rating",
dplyr::starts_with("rater")) %>%
with(., table(subject, rating))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.