When to use it
Use for assessing rating agreement when measurements are continuous numerical scores.
Required Inputs
- Ratings matrix (N items x K raters)
- Model type (One-way / Two-way random / Two-way mixed)
- Unit choice (Single / Average)
Calculate Intraclass Correlation Coefficient (ICC(1,1), ICC(2,1), ICC(3,1)) to assess inter-rater reliability for continuous numerical ratings.
Run this test live in StatLab npm i @statlab/coreUse for assessing rating agreement when measurements are continuous numerical scores.
ICC = (MS_between - MS_error) / [ MS_between + (k-1)MS_error + (k/n)(MS_rater - MS_error) ]
import pingouin as pg
icc = pg.intraclass_corr(data=df, targets='item', raters='judge', ratings='score')
print(icc)
library(psych)
ICC(matrix)
import { iccCalc } from '@statlab/core';
const icc = iccCalc(matrix);
Continuous A/B testing, statistical telemetry analysis, and automated feedback loops for live backend services.
Explore VoxelPulse →Fixed-price AI release-readiness sprints, automated regression testing, and reliability statistical benchmarks.
Explore VoxelAssurance →Explore static calculators across the StatLab inference engine suite.