ciROCemp | R Documentation |
Function ciROCemp
estimates confidence interval
of empirically estimated ROC curve.
ciROCemp(rocit_emp, level)
rocit_emp |
An object of class |
level |
Desired level of confidence to be estimated. |
A list object containing TPR, upper and lower bound of TPR at certain FPR values.
ciROCemp
is used internally in ciROC.rocit
of ROCit.
rocit
, ciROC
, plot.rocci
set.seed(100)
score <- c(runif(20, 15, 35), runif(15, 25, 45))
class <- c(rep(1, 20), rep(0, 15))
rocit_object <- rocit(score, class)
ciROC <- ciROCemp(rocit_object, level = 0.9)
names(ciROC)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.