Saturday, June 22, 2013

ROCR: Classifier Visualization in R

ROCR: Classifier Visualization in R: "Using ROCR's 3 commands to produce a simple ROC plot:
pred <- prediction(predictions, labels)
perf <- performance(pred, measure = "tpr", x.measure = "fpr")
plot(perf, col=rainbow(10))"

'via Blog this'