Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug This is a regression due to the fix in #25
To Reproduce
> response <- rbinom(1E5, 1, .5) > predictor <- rnorm(1E5) > rocobj <- roc(response, predictor) Erreur : impossible d'allouer un vecteur de taille 74.5 Go 4: outer(thresholds, predictor, `==`) at roc.utils.R#119 3: roc.utils.thresholds(c(controls, cases), direction) at roc.R#316 2: roc.default(response, predictor) at roc.R#21 1: roc(response, predictor)
This is caused by the check for identical values:
if (any(o <- outer(thresholds, predictor, `==`))) {
There must be an other way to test for exact equality between two vectors safely.
The text was updated successfully, but these errors were encountered:
Test support for large datasets (issue #29)
366ffce
Fix issue #29
fb08481
Fixed on master. Will push pROC 1.12.1 to CRAN ASAP.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
This is a regression due to the fix in #25
To Reproduce
This is caused by the check for identical values:
There must be an other way to test for exact equality between two vectors safely.
The text was updated successfully, but these errors were encountered: