When to use it
Use when 3 or more raters assign items into mutually exclusive categories.
Required Inputs
- Rating count matrix (N items x K categories)
- Category names
Calculate Fleiss' Kappa (κ) to measure inter-rater reliability across 3 or more fixed raters or LLM evaluators classifying items into categorical ratings.
Run this test live in StatLab npm i @statlab/coreUse when 3 or more raters assign items into mutually exclusive categories.
κ = (P̄ - P̄_e) / (1 - P̄_e)
from statsmodels.stats.inter_rater import fleiss_kappa
kappa = fleiss_kappa(counts_matrix)
print(f"kappa={kappa:.4f}")
library(irr)
kappam.fleiss(matrix)
import { fleissKappa } from '@statlab/core';
const k = fleissKappa(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.