Hello,
I have 50 survey questions: q1 - q50
I would like to perform inter-rater reliability between two raters for each of these questions using
The problem I am facing now is that I need to reshape the data first because the data recorded the observations like the below.
Could you please advise me how I can reshape this data to the format (question number.rater number) so that I can perform the test
Or is there any way that I can test inter-reliability test without reshaping?
Thank you so much for your comments.
I really appreciate your help.
I have 50 survey questions: q1 - q50
I would like to perform inter-rater reliability between two raters for each of these questions using
Code:
kap varname1 varname2 if in weight , options Weights
ID | Q1 | Q2 | Q3 | |
11 | 1 | 1 | 1 | patient1 recorded by rater1 |
12 | 1 | 1 | 2 | patient1 recorded by rater2 |
21 | 1 | 1 | 2 | patient2 recorded by rater 1 |
22 | 1 | 1 | 1 | patient 2 recorded by rater1 |
Could you please advise me how I can reshape this data to the format (question number.rater number) so that I can perform the test
Code:
kap q1.1 q1.2
ID | Q1.1 | Q1.2 | Q2.1 | Q2.2 | Q3.1 | Q3.2 |
1 | 1 | 1 | 1 | 1 | 1 | 2 |
2 | 1 | 1 | 1 | 1 | 2 | 1 |
Or is there any way that I can test inter-reliability test without reshaping?
Thank you so much for your comments.
I really appreciate your help.
Comment