SimulateRocDataset.Rd
Simulates an uncorrelated binormal model ROC factorial dataset
SimulateRocDataset(I = 1, J = 1, K1, K2, a, deltaA = 0, b, seed = NULL)
Number of modalities, default 1
The number of readers, default 1
Number of non-diseased cases
Number of diseased cases
\(a\) parameter of binormal model
Inter-modality increment in the \(a\) parameter, default zero
\(b\) parameter of the binormal model
Initial seed, default is NULL, for random seed
An ROC dataset
See book Chapter 6 for details
Chakraborty DP (2017) Observer Performance Methods for Diagnostic Imaging - Foundations, Modeling, and Applications with R-Based Examples, CRC Press, Boca Raton, FL. https://www.routledge.com/Observer-Performance-Methods-for-Diagnostic-Imaging-Foundations-Modeling/Chakraborty/p/book/9781482214840
K1 <- 5;K2 <- 7;a <- 1.5;b <- 0.5
rocDataRaw <- SimulateRocDataset(K1 = K1, K2 = K2, a = a, b = b)