Last chance! 50% off unlimited learning
Sale ends in
Comparing standalone CAD vs. a group of radiologists interpreting the same cases; (ideally) standalone CAD means that all the designer-level mark-rating pairs provided by the CAD algorithm are available, not just the one or two marks usually displayed to the radiologist. At the very minimum, location-level information, such as in the LROC paradigm, should be used. Ideally the FROC paradigm should be used. A severe statistical power penalty is paid if one uses the ROC paradigm. Details of the method are in a pdf file that will be uploaded to GitHub and in my 2017 book.
StSignificanceTestingCadVsRad(
dataset,
FOM,
FPFValue = 0.2,
method = "1T-RRRC",
alpha = 0.05,
plots = FALSE
)
If method = "1T-RRRC"
the return value is a
list with the following elements:
The observed FOM for CAD.
The observed FOM array for the readers.
The average FOM of the readers.
The mean of the difference FOM, RAD - CAD.
The 95-percent CI of the average difference, RAD - CAD.
The variance of the radiologists.
The variance of the error term in the single-treatment multiple-reader OR model.
The covariance of the error term.
The observed value of the t-statistic; it's square is equivalent to an F-statistic.
The degrees of freedom of the t-statistic.
The p-value for rejecting the NH.
If argument plots = TRUE, a ggplot object
containing empirical operating characteristics
corresponding to specified FOM. For example, if FOM
=
"Wilcoxon"
an ROC plot object
is produced where reader 1 is CAD. If an LROC FOM is selected, an LROC
plot is displayed.
If method = "2T-RRRC"
the return value is a list
with the following elements:
The observed FOM for CAD.
The observed FOM array for the readers.
The average FOM of the readers.
The mean of the difference FOM, RAD - CAD.
A data frame containing the statistics associated with the average difference, RAD - CAD.
A data frame containing the statistics associated with the average FOM in each "treatment".
The variance of the pure reader term in the OR model.
The variance of the treatment-reader term error term in the OR model.
The covariance1 of the error term - same reader, different treatments.
The covariance2 of the error term - different readers, same treatment.
The covariance3 of the error term - different readers, different treatments.
The variance of the pure error term in the OR model.
The observed value of the F-statistic.
The numerator degrees of freedom of the F-statistic.
The denominator degrees of freedom of the F-statistic.
The p-value for rejecting the NH.
see above.
The dataset to be analzed; must be single-treatment multiple-readers, where the first reader is CAD.
The desired FOM; for ROC data it must be "Wilcoxon"
, for FROC data
it can be any valid FOM, e.g., "HrAuc"
, "wAFROC"
, etc;
for LROC data it must be "Wilcoxon"
, or "PCL"
or "ALROC"
.
Only needed for LROC
data and FOM = "PCL" or "ALROC";
where to evaluate a partial curve based figure of merit. The default is 0.2.
The desired analysis: "1T-RRFC","1T-RRRC" (the default) or "2T-RRRC", see manuscript for details.
Significance level of the test, defaults to 0.05.
Flag, default is FALSE, i.e., a plot is not displayed. If TRUE, it displays the appropriate operating characteristic for all readers and CAD.
PCL is the probability of a correct localization.
The LROC is the plot of PCL (ordinate) vs. FPF.
For LROC data, FOM = "PCL" means the interpolated PCL value
at the specified FPFValue
.
For FOM = "ALROC" the trapezoidal area under the LROC
from FPF = 0 to FPF = FPFValue
is used.
If method = "1T-RRRC"
the first reader is assumed to be CAD.
If method = "2T-RRRC"
the first treatment is assumed to be CAD.
The NH is that the FOM of CAD equals the average of the readers.
The method = "1T-RRRC"
analysis uses an adaptation of the
single-treatment multiple-reader Obuchowski Rockette (OR) model described in a
paper by Hillis (2007), section 5.3. It is characterized by 3 parameters
VarR
, Var
and Cov2
, where the latter two are estimated
using the jackknife.
For method = "2T-RRRC"
the analysis replicates the CAD data as many times as
necessary so as to form one "treatment" of an MRMC pairing, the other
"treatment" being the radiologists. Then standard ORH analysis is applied. The
method is described in Kooi et al. It gives exactly the same final results
(F-statistic, ddf and p-value) as "1T-RRRC"
but the intermediate quantities
are meaningless.
Hillis SL (2007) A comparison of denominator degrees of freedom methods for multiple observer ROC studies, Statistics in Medicine. 26:596-619.
Chakraborty DP (2017) Observer Performance Methods for Diagnostic Imaging - Foundations, Modeling, and Applications with R-Based Examples, CRC Press, Boca Raton, FL.
Hupse R, Samulski M, Lobbes M, et al (2013) Standalone computer-aided detection compared to radiologists performance for the detection of mammographic masses, Eur Radiol. 23(1):93-100.
Kooi T, Gubern-Merida A, et al. (2016) A comparison between a deep convolutional neural network and radiologists for classifying regions of interest in mammography. Paper presented at: International Workshop on Digital Mammography, Malmo, Sweden.
ret1M <- StSignificanceTestingCadVsRad (dataset09,
FOM = "Wilcoxon", method = "1T-RRRC")
StSignificanceTestingCadVsRad(datasetCadLroc,
FOM = "Wilcoxon", method = "1T-RRFC")
retLroc1M <- StSignificanceTestingCadVsRad (datasetCadLroc,
FOM = "PCL", method = "1T-RRRC", FPFValue = 0.05)
## test with fewer readers
dataset09a <- DfExtractDataset(dataset09, rdrs = seq(1:7))
ret1M7 <- StSignificanceTestingCadVsRad (dataset09a,
FOM = "Wilcoxon", method = "1T-RRRC")
datasetCadLroc7 <- DfExtractDataset(datasetCadLroc, rdrs = seq(1:7))
ret1MLroc7 <- StSignificanceTestingCadVsRad (datasetCadLroc7,
FOM = "PCL", method = "1T-RRRC", FPFValue = 0.05)
# \donttest{
## takes longer than 5 sec on OSX
## retLroc2M <- StSignificanceTestingCadVsRad (datasetCadLroc,
## FOM = "PCL", method = "2T-RRRC", FPFValue = 0.05)
## ret2MLroc7 <- StSignificanceTestingCadVsRad (datasetCadLroc7,
## FOM = "PCL", method = "2T-RRRC", FPFValue = 0.05)
# }
Run the code above in your browser using DataLab