ROCR.simple(ROCR)
ROCR.simple()所属R语言包:ROCR
Data set: Simple artificial prediction data for use with ROCR
数据集:简单的的人工预测数据为使用ROCR
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A mock data set containing a simple set of predictions and corresponding class labels.
虚拟数据集,其中包含了一套简单的预测和相应的类标签。
用法----------Usage----------
data(ROCR.simple)
格式----------Format----------
A two element list. The first element, ROCR.simple$predictions, is a vector of numerical predictions. The second element, ROCR.simple$labels, is a vector of
两个元素的列表。的第一个元素,ROCR.simple$predictions,是一个向量的数值预测。第二个元素,ROCR.simple$labels,是一个向量
实例----------Examples----------
# plot a ROC curve for a single prediction run[绘制ROC曲线运行一个预测]
# and color the curve according to cutoff.[和颜色的曲线根据截止。]
data(ROCR.simple)
pred <- prediction(ROCR.simple$predictions, ROCR.simple$labels)
perf <- performance(pred,"tpr","fpr")
plot(perf,colorize=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|