gpt4 book ai didi

r - 使用 ROCR 包的难点

转载 作者:行者123 更新时间:2023-12-01 02:25:13 25 4
gpt4 key购买 nike

我正在跟踪对德国信用数据的分析,但由于我已经安装了 ,我无法纠正该错误。 ROCR 包裹。下面是使用 的代码ROCR :

#load library
library(ROCR)

#score test data set
test$score <- predict(m,type='response',test)
pred <- prediction(test$score,test$good_bad)
perf <- performance(pred,"tpr","fpr")
plot(perf)

现在,运行后 pred ,我收到以下错误:
>pred <- prediction(test$score,test$Good_Bad)
Error: could not find function "prediction".

当我尝试执行以下行时也会发生这种情况:
>perf <- performance(pred,"tpr","fpr")
Error: could not find function "performance"

最佳答案

我有同样的问题......如果你仔细观察,它说:

Loading required package: gplots
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘KernSmooth’
In addition: Warning messages:
1: package ‘ROCR’ was built under R version 3.0.3
2: package ‘gplots’ was built under R version 3.0.3
Error: package ‘gplots’ could not be loaded

我只是安装了 install.packages("gplots") 然后加载了库,它加载并找到了没有任何问题的函数。

希望这可以帮助

关于r - 使用 ROCR 包的难点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17045915/

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