I have the following dataset
df <- data.frame(Nurse=c(1,2,4,3,5,4,3,2,4,3), Patient=c(2,3,5,4,4,4,3,3,2,3))
where for each row both a nurse rates and the patient self-rates the severity of their illness (from 1-5). Each row represents a different patient and different event.
How would I calculate kappa interrate agreement between nurse and patient and calculate associated CIs?
I have trialled
kappa2(df,weight = "equal")
but does not provide confidence intervals.