Hello,
I have a data set from which I am calculating inter-rater reliability. I have run kappaetc and have what I need from that output. However, I would like to create two new variables called percentcorrect, which represents the percent of raters that scored each item correctly, and percentagree, which represents the percent agreement per item. The item scores are binary and the correct answers are binary. For example, if the item should have been rated yes, then the answer code is 1. No is 0. I have already generated the percentcorrect and percentagree variables which are currently equal to 0.
My question:
Is there a way to calculate the percentcorrect and percentagree variables using my current data input. I feel like there should be a simple way and am hoping to learn something new and possibly generalizable to future analyses.
OR
Am I right in my thinking that I should create new binary variables for each rater that indicate whether or not they scored the item accurately to use to create the percentcorrect variable? If so, do you have a suggestion for the percentagree variable at the item level?
Thanks so much! Sometimes I look at something too long and make it FAR more complicated than it should be.
I have a data set from which I am calculating inter-rater reliability. I have run kappaetc and have what I need from that output. However, I would like to create two new variables called percentcorrect, which represents the percent of raters that scored each item correctly, and percentagree, which represents the percent agreement per item. The item scores are binary and the correct answers are binary. For example, if the item should have been rated yes, then the answer code is 1. No is 0. I have already generated the percentcorrect and percentagree variables which are currently equal to 0.
Code:
* Example generated by -dataex-. For more info, type help dataex clear input str7 item byte(raterw raterg raterd ratert raterbe raterbr raterr correctscore) float(percentcorrect percentagree) "R.8.01" 0 1 1 1 1 1 1 1 0 0 "R.8.02" 0 1 1 0 0 0 1 0 0 0 "R.8.03" 1 1 1 1 1 1 1 1 0 0 "R.9.03" 1 1 1 1 1 1 1 1 0 0 "R.2.01" 1 1 1 1 1 1 1 1 0 0 end
Is there a way to calculate the percentcorrect and percentagree variables using my current data input. I feel like there should be a simple way and am hoping to learn something new and possibly generalizable to future analyses.
OR
Am I right in my thinking that I should create new binary variables for each rater that indicate whether or not they scored the item accurately to use to create the percentcorrect variable? If so, do you have a suggestion for the percentagree variable at the item level?
Thanks so much! Sometimes I look at something too long and make it FAR more complicated than it should be.
Comment