I have two dataframes with multiple variables. Each dataframe belongs to one rater. I would like to calculate the interrater reliability (Cohen's Kappa) between the two dataframes.
For example:
Rater1 <- matrix(c(1,0,0,1,0,0,0,0,1),ncol=3,byrow=TRUE)
colnames(Rater1)<-c("V1","V2","V3")
Rater2 <- matrix(c(0,1,0,1,0,1,0,0,1),ncol=3,byrow=TRUE)
colnames(Rater2)<-c("V1","V2","V3")
It must have something to do with the 'IRR' package, but I really can't figure out how. Any help in the right direction is very much appreciated.