gpt4 book ai didi

r - 使用 ROCR 包的精确召回曲线的 AUC

转载 作者:行者123 更新时间:2023-12-04 10:56:32 25 4
gpt4 key购买 nike

如何使用包 ROCR.. 获得精确召回曲线的 AUC(曲线下面积)?

library(ROCR)
data(ROCR.simple)
pred <- prediction( ROCR.simple$predictions, ROCR.simple$labels)
perf <- performance(pred,"tpr","fpr")
plot(perf)
## precision/recall curve (x-axis: recall, y-axis: precision)
perf1 <- performance(pred, "prec", "rec")
plot(perf1)

最佳答案

您可以先获得精度和召回值

x <- perf1@x.values[[1]] # Recall values
y <- perf1@y.values[[1]] # Precision values

然后使用以下任何方法计算曲线下面积
calculate area under the curve

关于r - 使用 ROCR 包的精确召回曲线的 AUC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39268159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com