Calculating Confidence Intervals and P-values for Various ICCs"

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(irrICC)
library(scales)

Abstract

irrICC is an R package that provides several functions for calculating various Intraclass Correlation Coefficients (ICC). This package follows closely the general framework of inter-rater and intra-rater reliability presented by Gwet (2014).

In this document, I like to show you how to obtain the confidence interval and the p-value associated with a particular Intraclass Correlation Coefficient (ICC) your previously obtained. To learn how to obtain the various ICCs implemented in this package, please refer to the User Guide.

Note that the package scales is used in this document for formating some numbers. But it not needed to run the irrICC package.

ICC under Model 1A

The following code gives us the inter-rater reliability coefficient of r round(icc1a.fn(iccdata1)$icc1a,3), the associated 95\% confidence interval of (r round(ci.ICC1a(iccdata1)$lcb,3),r round(ci.ICC1a(iccdata1)$ucb,3)). As for the p-value, the function pval.ICC1a() produces several p-values associated with various values of the null parameters rho.zero given by (0,0.1,0.3,0.5,0.7,0.9). Typically, researchers will calculate the p-value associated with 0 null value to test for statistical significance.
You can provide your own null values using the function pvals.ICC1a() whose default null value is 0. It's why pvals.ICC1a(iccdata1) yields r round(pvals.ICC1a(iccdata1),3).

  icc1a.fn(iccdata1)
  ci.ICC1a(iccdata1)
  pval.ICC1a(iccdata1)
  pvals.ICC1a(iccdata1)

The 95\% confidence level is what is offered by default. Can we obtain a 90\% confidence interval instead? The answer is yes. This is achieved as follows:

  ci.ICC1a(iccdata1,conflev = 0.90)

Now, suppose you want to compute p-values based on Model 1A for the null values 0.15,0.25, and 0.45. You would proceed as follows:

  pvals.ICC1a(iccdata1,rho.zero = c(0.15,0.25,0.45))

ICC under Model 1B

The following code gives us the intra-rater reliability coefficient of r round(icc1b.fn(iccdata1)$icc1b,3), the associated 95\% confidence interval of (r round(ci.ICC1b(iccdata1)$lcb,3),r round(ci.ICC1b(iccdata1)$ucb,3)). The function pval.ICC1b() gives you p-values for a predermined vector of null values (0.0,0.1,0.3,0.5,0.7,0.9). For example, the p-value associated with the null value 0.3 is given by r scientific(pval.ICC1b(iccdata1)$pval[3],digits=4). If you want to supply your own null values you will need to use function pvals.ICC1b(), the default null value being 0.. Remember that Model 1B can only give you an intra-rater reliability coefficient. If you need an inter-rater reliability then you must use a different model.

  icc1b.fn(iccdata1)
  ci.ICC1b(iccdata1)
  pval.ICC1b(iccdata1)
  pvals.ICC1b(iccdata1)

Again, instead of the default 95\% confidence interval, you may request a 90\% confidence interval as follows:

  ci.ICC1b(iccdata1,conflev = 0.90)

P-values associated with an arbitrary vector of null values (0.15,0.25,0.45) are calculated as follows:

  pvals.ICC1b(iccdata1,gam.zero = c(0.15,0.25,0.45))

It follows that for the null value 0.25 you get p-value = r scientific(pvals.ICC1b(iccdata1,gam.zero =0.25)$pval,digits=4).

ICC under Model 2

Model 2 With Interaction

Under Model 2 with interaction, the confidence intervals and p-values are calculated as follows:

  icc2.inter.fn(iccdata1)
  ci.ICC2r.inter(iccdata1)
  ci.ICC2a.inter(iccdata1)
  pval.ICC2r.inter(iccdata1)
  pvals.ICC2r.inter(iccdata1)
  pvals.ICC2a.inter(iccdata1)
  pvals.ICC2r.inter(iccdata1,rho.zero = c(0.25,0.45))
  pvals.ICC2a.inter(iccdata1,gam.zero = c(0.25,0.45))

Model 2 Without Interaction

Under Model 2 without interaction, the confidence intervals and p-values are calculated as follows:

  icc2.nointer.fn(iccdata1)
  ci.ICC2r.nointer(iccdata1)
  ci.ICC2a.nointer(iccdata1)
  pvals.ICC2r.nointer(iccdata1)
  pvals.ICC2a.nointer(iccdata1)

ICC under Model 3

Under Model 3 with interaction, the confidence intervals and p-values are calculated as follows:

  icc3.inter.fn(iccdata1)
  ci.ICC3r.inter(iccdata1)
  ci.ICC3a.inter(iccdata1)
  pvals.ICC3r.inter(iccdata1)
  pvals.ICC3a.inter(iccdata1)

Under Model 3 without interaction, the confidence intervals and p-values are calculated as follows:

  icc3.nointer.fn(iccdata1)
  ci.ICC3r.nointer(iccdata1)
  pvals.ICC3r.nointer(iccdata1)

References:

  1. Gwet, K.L. (2014, ISBN:978-0970806284). "Handbook of Inter-Rater Reliability," 4th Edition. Advanced Analytics, LLC


Try the irrICC package in your browser

Any scripts or data that you put into this service are public.

irrICC documentation built on Sept. 23, 2019, 5:05 p.m.