Hi, everybody! Can't find a strong answer to this elsewhere, so I'm hoping you all might be able to point me in the right direction.
I want to compute interrater agreement (actually, in this case, inter-method agreement) for the following scenario: The same person provides nominal ratings of whether or not an event occurred each day for 30 days, and I have 10 people doing this. What's the best/appropriate approach for calculating overall agreement (e.g., kap, kappa, or even icc? Something else)? Data looks like this, where cols 3 and 4 are the ratings I want to compare (but of course, I can reshape):
+-------------------------------------+
| id date mnsexo~d tlfbse~d |
|-------------------------------------|
1. | 1 03/12/14 0 0 |
2. | 1 03/12/14 0 0 |
3. | 1 03/12/14 0 0 |
4. | 1 03/12/14 0 0 |
5. | 1 03/13/14 0 1 |
+-------------------------------------+
+-------------------------------------+
| id date mnsexo~d tlfbse~d |
|-------------------------------------|
89. | 2 03/19/14 0 0 |
90. | 2 03/19/14 0 0 |
91. | 2 03/19/14 0 0 |
92. | 2 03/19/14 0 0 |
93. | 2 03/22/14 1 0 |
+-------------------------------------+
I want to compute interrater agreement (actually, in this case, inter-method agreement) for the following scenario: The same person provides nominal ratings of whether or not an event occurred each day for 30 days, and I have 10 people doing this. What's the best/appropriate approach for calculating overall agreement (e.g., kap, kappa, or even icc? Something else)? Data looks like this, where cols 3 and 4 are the ratings I want to compare (but of course, I can reshape):
+-------------------------------------+
| id date mnsexo~d tlfbse~d |
|-------------------------------------|
1. | 1 03/12/14 0 0 |
2. | 1 03/12/14 0 0 |
3. | 1 03/12/14 0 0 |
4. | 1 03/12/14 0 0 |
5. | 1 03/13/14 0 1 |
+-------------------------------------+
+-------------------------------------+
| id date mnsexo~d tlfbse~d |
|-------------------------------------|
89. | 2 03/19/14 0 0 |
90. | 2 03/19/14 0 0 |
91. | 2 03/19/14 0 0 |
92. | 2 03/19/14 0 0 |
93. | 2 03/22/14 1 0 |
+-------------------------------------+
Comment