View source: R/rater_functions.R
meanAgree | R Documentation |
This is a wrapper for the agree
function from the irr
package. Function computes mean agreement among several raters (at least 2) for
one item and several persons.
meanAgree( dat , tolerance = 0 , weight.mean = TRUE )
dat |
Data frame with at least two columns, with examinees in the rows and raters in the columns. |
tolerance |
number of successive rating categories that should be regarded as rater agreement (see
help file of the |
weight.mean |
Logical: TRUE, if agreement is weighted by number of rater subjects. FALSE, if it is averaged among all rater pairs. |
A list. First element is a data frame with proportional agreement between raters pairs. Second element is a scalar with mean agreement among all raters.
Alexander Robitzsch
data(rater)
v01 <- subset(rater, variable == "V01")
dat <- reshape2::dcast( v01, id~rater, value.var = "value")
agr <- meanAgree(dat[,-1])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.