如何从 ROCR 包导出数据
我正在尝试使用 ROCR 包从分析中导出生物识别数据。这是我到目前为止所做的代码:
pred = performance(Matching.Score,Distribution)
perf = prediction(pred,"fnr", "fpr")
An object of class “performance”
Slot "x.name":
[1] "False positive rate"
Slot "y.name":
[1] "False negative rate"
Slot "alpha.name":
[1] "Cutoff"
Slot "x.values":
[[1]]
[1] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
[15] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
......
Slot "y.values":
[[1]]
[1] 1.00000 0.99999 0.99998 0.99997 0.99996 0.99995
[15] 0.99986 0.99985 0.99984 0.99983 0.99982 0.99981
......
Slot "alpha.values":
[[1]]
[1] Inf 1.0427800 1.0221150 1.0056240 1.0032630 0.9999599
[12] 0.9644779 0.9633058 0.9628996 0.9626501 0.9607665 0.9605930
.......
这会产生几个插槽。我想使用以下方法将结果值导出到文本文件中进行 Excel 修改:
write(pred, "filename")
但是,当我尝试写入文件时,收到一条错误消息:
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'S4') cannot be handled by 'cat'
是否存在有什么办法解决这个问题吗?
我将不胜感激任何建议。谢谢你!
马特·彼得森
I am trying to export biometric data from an analysis using the ROCR package. Here is the code that I've done so far:
pred = performance(Matching.Score,Distribution)
perf = prediction(pred,"fnr", "fpr")
An object of class “performance”
Slot "x.name":
[1] "False positive rate"
Slot "y.name":
[1] "False negative rate"
Slot "alpha.name":
[1] "Cutoff"
Slot "x.values":
[[1]]
[1] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
[15] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
......
Slot "y.values":
[[1]]
[1] 1.00000 0.99999 0.99998 0.99997 0.99996 0.99995
[15] 0.99986 0.99985 0.99984 0.99983 0.99982 0.99981
......
Slot "alpha.values":
[[1]]
[1] Inf 1.0427800 1.0221150 1.0056240 1.0032630 0.9999599
[12] 0.9644779 0.9633058 0.9628996 0.9626501 0.9607665 0.9605930
.......
This results in several Slots. I would like to export the resulting values into a text file for Excel modification using:
write(pred, "filename")
However, when I try to write the file, I get an error stating:
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'S4') cannot be handled by 'cat'
Is there any way around this?
I'd appreciate any advice. Thank you!
Matt Peterson
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
str
检查生成的 S4 对象的类结构,提取相关变量以构建数据帧并使用write.table
/write.csv
导出结果。例如,对于预测pred
:和对于性能
perf
:Check the class structure of the resulting S4 objects with
str
, extract the relevant variables to build a dataframe and usewrite.table
/write.csv
to export the results. For instance, for the predictionpred
:and for performance
perf
: