Computes the Area Under the ROC curve for a recommendation task of an algorithm with its given configuration and based on the given evaluation model.
getAUC(model, ...)
# S4 method for evalModel
getAUC(model, alg, ... )
Object of type evalModel
. See evalModel-class.
The algorithm to be used in the evaluation. Of class character
.
other attributes specific to the algorithm to be deployed. Refer to rrecsys
.
Returns a data frame with the AUC
for each of the k-folds defined in the evaluation model and the overall average.
T. Fawcett, <U+201C>ROC Graphs: Notes and Practical Considerations for Data Mining Researchers ROC Graphs : Notes and Practical Considerations for Data Mining Researchers,<U+201D>, HP Inven., p. 27, 2003.
# NOT RUN {
x <- matrix(sample(c(NA, 1:5), size = 200, replace = TRUE,
prob = c(.6,.8,.8,.8,.8,.8)), nrow = 20, byrow = TRUE)
x <- defineData(x)
e <- evalModel(x, 5)
auc <- getAUC(e, "FunkSVD", k = 4)
auc
# }
Run the code above in your browser using DataLab