AUROC: AUROC measures

Description Usage Arguments Details Value Examples

Description

Function to compute the Area under the ROC Curve through precrec package.

Usage

1
2
3
AUROC.single.class(labels, scores, folds = NULL, seed = NULL)

AUROC.single.over.classes(target, predicted, folds = NULL, seed = NULL)

Arguments

labels

vector of the true labels (0 negative, 1 positive examples).

scores

a numeric vector of the values of the predicted labels (scores).

folds

number of folds on which computing the AUROC. If folds=NULL (def.), the AUROC is computed one-shot, otherwise the AUROC is computed averaged across folds.

seed

initialization seed for the random generator to create folds. Set seed only if folds\neqNULL. If seed=NULL and folds\neqNULL, the AUROC averaged across folds is computed without seed initialization.

target

annotation matrix: rows correspond to examples and columns to classes. target[i,j]=1 if example i belongs to class j, target[i,j]=0 otherwise.

predicted

a numeric matrix with predicted values (scores): rows correspond to examples and columns to classes.

Details

The AUROC (for a single class or for a set of classes) is computed either one-shot or averaged across stratified folds.

AUROC.single.class computes the AUROC just for a given class.

AUROC.single.over.classes computes the AUROC for a set of classes, including their average values across all the classes.

For all those classes having zero annotations, the AUROC is set to 0.5. These classes are included in the computing of the AUROC averaged across classes, both when the AUROC is computed one-shot or averaged across stratified folds.

The AUROC is set to 0.5 to all those classes having zero annotations. Names of rows and columns of labels and predicted must be provided in the same order, otherwise a stop message is returned.

Value

AUROC.single.class returns a numeric value corresponding to the AUROC for the considered class; AUPR.single.over.classes returns a list with two elements:

  1. average: the average AUROC across classes;

  2. per.class: a named vector with AUROC for each class. Names correspond to classes.

Examples

1
2
3
4
5
6
7
8
data(labels);
data(scores);
data(graph);
root <- root.node(g);
L <- L[,-which(colnames(L)==root)];
S <- S[,-which(colnames(S)==root)];
AUC.single.class <- AUROC.single.class(L[,3], S[,3], folds=5, seed=23);
AUC.over.classes <- AUROC.single.over.classes(L, S, folds=5, seed=23);

gecko515/HEMDAG documentation built on Oct. 18, 2019, 6:34 a.m.