Intermediate Precision Evaluation
Intermediate Precision Evaluation
Accuracy: The score you get from the target of darts. The higher the
score, the better.
Concepts
If you want to estimate the precision for a certain test, these three
indicators are useful to figure out whether it’s good enough for
using.
Day
Run
Reagent lot
Calibrator lot
Calibration cycle
Operator
Instrument
Laboratory
The first two of the above are usually the main factors to be
considered.
Design
In a single-site 20x2x2 study with 20 days, with two runs per day,
with two replicates per run. The associated factors including days
and runs will be involved in the statistical analysis, which it used to
estimate the two types of precision: repeatability (within-run
precision) and within-laboratory precision (within-device precision)
Once the source of variation has been identified, ANOVA model can
be used to calculate the SDs and %CVs in the statistical processing
of the data. Usual factor can be divided into three components:
CLSI_precision
Let’s talk about how to calculate the %CV and SD that can be
divided into at least two categories based on how many factors are
involved.
20 test days
3 : 4 Median :75.39
4 : 4 Mean :75.41
5 : 4 3rd Qu.:77.37
6 : 4 Max. :83.02
(Other):56
The second step, I use the nested ANOVA by aov function in R to fit
a nested linear components-of-variance model. In this situation, runs
are nested within days.
ss <- summary(res)
> ss
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
The third step, calculate the SD and %CV of the day, run and error
variation following the formula occurred in EP05-A3. By the way, the
error CV(CVerror) is corresding to %CVR, also called within-run or
repeatability precision. And the %CVWL is the within-laboratory
precision.
nrep <- 2
nrun <- 2
nday <- 20
> CVerror
[1] 2.557875
> CVwl
[1] 3.843561
CLSI_precision2
> CVCI
> CVCI_oneSide
Fit model:
res
> res
-----------------------------------
VCAinference(res)
> VCAinference(res)
------------------------------------------------
-------------
> VC:
-----
day 1.8538
day:run 2.8261
> SD:
-----
day 1.3615
day:run 1.6811
> CV[%]:
--------
day 1.8056
day:run 2.2294
Reference
Related Posts
Bland-Altman Analysis
# Biometrics