Description Usage Arguments Details Examples
auc
computes the area under the receiver-operator characteristic curve (AUC).
1 | auc(actual, predicted)
|
actual |
The ground truth binary numeric vector containing 1 for the positive class and 0 for the negative class. |
predicted |
A numeric vector of predicted values, where the smallest values correspond
to the observations most believed to be in the negative class
and the largest values indicate the observations most believed
to be in the positive class. Each element represents the
prediction for the corresponding element in |
auc
uses the fact that the area under the ROC curve is equal to the probability
that a randomly chosen positive observation has a higher predicted value than a
randomly chosen negative value. In order to compute this probability, we can
calculate the Mann-Whitney U statistic. This method is very fast, since we
do not need to compute the ROC curve first.
1 2 3 |
[1] 0.8888889
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.