#' @title Paired t-test for the difference of 2 AC2 coefficients.
#'
#' @description The ttest.ac2 function performs the paired t-test for testing
#' the difference between two correlated Gwet's \eqn{AC_2} coefficients for
#' statistical significance. It implements the linearization method of
#' Gwet (2016).
#'
#' @param g1.ratings is a mandatory parameter representing the first data frame
#' of ratings.
#' @param g2.ratings is a mandatory parameter representing the second data frame
#' of ratings.
#' @param weights is an optional parameter that defines the weights needed in a
#' weighted analysis. It's default value is ``unweighted'' which requests the
#' unweighted analysis.
#' @param conflev, is an optional parameter representing the confidence level.
#' It's default value is 0.95.
#' @param N is an optional parameter representing the size of the subject
#' population. It's default value is infinity.
#'
#' @details The 2 required parameters "g1.ratings" and "g2.ratings",
#' which are the 2 groups of raters being compared, must have the
#' exact same number of rows, and each column represents one rater and
#' contains its ratings (numeric or alphabetic). All subjects that are not
#' rated by any rater must be excluded from the dataset.
#'
#' @references
#' Gwet, K. L. (2008). Computing inter-rater reliability and its variance in
#' the presence of high agreement. \emph{British Journal of Mathematical and
#' Statistical Psychology}, 61, 29-48.
#'
#' Gwet, K. L. (2016). Testing the Difference of Correlated Agreement
#' Coefficients for Statistical Significance, \emph{Educational and
#' Psychological Measurement}, Vol 76(4) 609-637.
#' @export
ttest.ac2 <- function(g1.ratings,g2.ratings,weights="unweighted",
conflev=0.95,N=Inf){
n2 <- nrow(g2.ratings)
n1 <- nrow(g1.ratings)
if (n2==n1){
coeff2.i<-ac2.linear.i(g2.ratings,weights,conflev,N)
coeff1.i<-ac2.linear.i(g1.ratings,weights,conflev,N)
di = coeff2.i$icoeff-coeff1.i$icoeff
ac2.coeff1 = mean(coeff1.i$icoeff)
ac2.coeff2 = mean(coeff2.i$icoeff)
coeff.diff <- ac2.coeff2-ac2.coeff1
std.err <- sqrt(stats::var(di)/n1)
t.stat <- (ac2.coeff2-ac2.coeff1)/std.err
p.value <- 2*(1-stats::pt(abs(t.stat),n1-1))
n.obs <- n2
n.raters1 <- ncol(g1.ratings)
n.raters2 <- ncol(g2.ratings)
weight.mat <- coeff1.i$weights
df.out <- data.frame(ac2.coeff1, ac2.coeff2,coeff.diff,std.err,t.stat,p.value,n.obs,n.raters1,n.raters2)
}else{
cat("Both datasets must have the same number of subjects. One has ",n1," subjects, while the other has ", n2," subjects.")
df.out <- NULL
weight.mat <- NULL
}
return(list("test"=df.out,"weights"=weight.mat))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.