The Individual Equivalence Coefficient (IEC) is an FDA approved statistic for measuring the inter-rater variability between two or more raters. The statistic can sometimes be called the Individual Bioequivalence Coefficient (IBC) if there are only two raters, however the calculations are exactly the same.
The general idea for using this statistic is to assess ‘interchangeability’ with a reference method.
Consider a reference method \(R\) and consider there to be \(J\geq2\) new methods. You will need repeated measurements from the reference method \(R\) and at least one measurement from each of the new methods.
Consider a situation where there exists a clinical expert who can be considered the ‘gold standard’ rater. We then want to compare three new operators to this clinical expert to assess how well the new operators work and whether they can be considered ‘interchangeable’.
In order to calculate the IEC, you would need the clinical expert and all operators to analyse the same cases. The clinical expert should also analyse the case more than once.
Thus you would have repeated measurements from the clinical expert, and at least one measurement from each of the new operators.
The table below provides an example of what would be required.
R1 | R2 | J1 | J2 | J3 |
---|---|---|---|---|
758 | 759 | 683 | 747 | 775 |
811 | 806 | 808 | 832 | 793 |
774 | 761 | 786 | 728 | 780 |
868 | 868 | 902 | 876 | 923 |
The formula to calculate the IEC is \[ IEC = \frac{\sum_{j=1}^J (\mu_j - \mu_R)^2 - \sum_{j=1}^J \sigma_{D_{jR}}^2 + \sum_{j=1}^J \sigma_{Wj}^2 - J\sigma_{WJ}^2}{J\sigma_{WR}^2} \] where \[ \sigma_{D_{jR}}^2 = (\sigma_{Bj} - \sigma_{BR})^2 + 2(1-\rho_{\mu_j})\sigma_{Bj}\sigma_{BR} \] and - \(\mu_R\) represents the mean value of the reference method - \(\mu_j\) represents the mean value of the new method \(J=j\) - \(\sigma_{WR}^2\) represents the within-subject variance for the reference method - \(\sigma_{Wj}^2\) represents the within-subject variance between the reference method and the new method \(J=j\) - \(\sigma_{BR}^2\) represents the between-subject variance for the reference method - \(\sigma_{Bj}^2\) represents the between-subject variance for the new method \(J=j\) - \(\rho_{\mu_j}\) represents the correlation between the reference method and the new method \(J=j\).
Consider a dummy data set created below:
set.seed(1)
Truth = rnorm(100, 800, 50)
set.seed(2)
R1 = Truth + rnorm(100, 0, 10)
set.seed(3)
R2 = Truth + rnorm(100, 0, 10)
set.seed(4)
J1 = Truth + rnorm(100, 10, 20)
set.seed(5)
J2 = Truth + rnorm(100, -5, 20)
set.seed(6)
J3 = Truth + rnorm(100, 0, 25)
data = data.frame(R1, R2, J1, J2, J3)
In this example we have one reference method with two repeats and three new methods to compare. I have created a function in R which will calculate the IEC. See below:
We can calculate the IEC of the dummy data set using
It’s value is IEC = 6.5040831.
The good news is that the FDA have provided an ‘acceptance criteria’ for which to apply to the IEC. The following reference: https://www.fda.gov/media/70958/download suggests that we can conclude interchangeability if IEC \(\leq\) 2.494827. Thus in the example above, we cannot conclude interchangeability.