rocboot.summary {Comp2ROC}R Documentation

Summary of Comparation

Description

This function allows to see the information obtained throught function roc.curve.boot.

Usage

rocboot.summary(result, mod1, mod2)

Arguments

result

List of statistical measures obtaind throught roc.curves.boot

mod1

Name of the column of dataframe that represents the first modality

mod2

Name of the column of dataframe that represents the second modality

See Also

save.file.summary

Examples


data(zhang)
moda1 = "modality1" 
moda2 = "modality2"
nameE = "new_Zhang"
data = read.manually.introduced(zhang, moda1, TRUE, moda2, TRUE, "status", TRUE)
results = roc.curves.boot(data, name=nameE, mod1=moda1, mod2=moda2) 
rocboot.summary(results, moda1, moda2)


[Package Comp2ROC version 1.1.4 Index]