例えば:
require(caTools)
colAUC(runif(90000), sample(c(0,1), 90000, replace = TRUE))
[,1]
0 vs. 1 0.5000629
ただし、正常に動作します
colAUC(runif(100000), sample(c(0,1), 100000, replace = TRUE))
与える
[,1]
0 vs. 1 NA
Warning message:
In n1 * n2 : NAs produced by integer overflow
私は何か間違ったことをしていますか、それともおそらくバグですか? ROCR::performance は、このサイズのサンプルに対して妥当な答えを生成します。