Good morning SAS community,
I have what I believe to be a relatively simple question regarding intraobserver and interobserver reliability using a weighted Cohen’s kappa analysis.
I have two reviewers (R1multiall, R3multiall) that graded radiographs 1-3.
R1multiall | R3multiall |
1 | 3 |
3 | 2 |
3 | 3 |
3 | 3 |
3 | 1 |
3 | 2 |
3 | 2 |
1 | 1 |
3 | 2 |
2 | 1 |
3 | 1 |
3 | 3 |
1 | 1 |
3 | 1 |
2 | 1 |
2 | 3 |
3 | 1 |
3 | 3 |
3 | 3 |
3 | 3 |
3 | 2 |
3 | 3 |
1 | 1 |
3 | 3 |
3 | 1 |
3 | 1 |
3 | 2 |
1 | 1 |
2 | 1 |
2 | 1 |
In trying to determine the inter-rater reliability, I used the code:
proc freq data = scaphoid.scaphoid ;
tables R1multiall * R3multiall / agree ;
test kappa ;
run;
However, I am surprised by the results (weighted kappa 0.1935) and feel that I am not calculating this correctly. I apologize, I am new to SAS and would really appreciate some help! This is just a small part of my dataset, I actually have 5 reviewers who all reviewed the radiographs twice. So I would like to access both inter- and intra-rater reliability.
Thank you for any guidance!