作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在跟踪对德国信用数据的分析,但由于我已经安装了 ,我无法纠正该错误。 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
关于r - 使用 ROCR 包的难点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17045915/
这是学校作业。总的来说,这应该读取一个文本文件,将其中的单词添加到哈希表中。我已经把它编码出来了,但我正在测试它,它给了我一些问题。当我尝试查找对象的索引时,它总是返回 -1,这意味着即使单词在数组中
我正在尝试使用 postgresql WITH AS () 构造,但出现错误: 即使是像这样的简单查询: WITH a AS ( SELECT '2' ) SELECT a 我得到了: -->
Makefiles 让我感到困惑。我想要做的就是将一些函数分离到一个单独的文件中,但我无法编译它。我错过了什么?谢谢! 生成文件: all: clientfunctions client client
我正在尝试分析我的合并和插入排序实现的运行时间。我注意到一个奇怪的趋势,我无法通过谷歌搜索找到有同样问题的人,但我可能使用了错误的术语。 排序算法运行的次数似乎与算法完成所需的时间成反比。下面显示了插
我在 SQL 中有以下查询,我想将其转换为 LINQ: select profile_id from t where child_id in (1, 2 ,3, ...) //this will be
我是一名优秀的程序员,十分优秀!