| prediction-class {ROCR} | R Documentation |
Class prediction
Description
Object to encapsulate numerical predictions together with the corresponding true class labels, optionally collecting predictions and labels for several cross-validation or bootstrapping runs.
Slots
predictionsA list, in which each element is a vector of predictions (the list has length > 1 for x-validation data.
labelsAnalogously, a list in which each element is a vector of true class labels.
cutoffsA list in which each element is a vector of all necessary cutoffs. Each cutoff vector consists of the predicted scores (duplicates removed), in descending order.
fpA list in which each element is a vector of the number (not the rate!) of false positives induced by the cutoffs given in the corresponding 'cutoffs' list entry.
tpAs fp, but for true positives.
tnAs fp, but for true negatives.
fnAs fp, but for false negatives.
n.posA list in which each element contains the number of positive samples in the given x-validation run.
n.negAs n.pos, but for negative samples.
n.pos.predA list in which each element is a vector of the number of samples predicted as positive at the cutoffs given in the corresponding 'cutoffs' entry.
n.neg.predAs n.pos.pred, but for negatively predicted samples.
Objects from the Class
Objects can be created by using the prediction function.
Note
Every prediction object contains information about the 2x2
contingency table consisting of tp,tn,fp, and fn, along with the
marginal sums n.pos,n.neg,n.pos.pred,n.neg.pred, because these form
the basis for many derived performance measures.
Author(s)
Tobias Sing tobias.sing@gmail.com, Oliver Sander osander@gmail.com
References
A detailed list of references can be found on the ROCR homepage at http://rocr.bioinf.mpi-sb.mpg.de.
See Also
prediction,
performance,
performance-class,
plot.performance