Nothing
library(pROC)
data(aSAH)
test_that("var with delong works", {
expect_equal(var(r.wfns), 0.00146991470882363)
expect_equal(var(r.ndka), 0.0031908105493913)
expect_equal(var(r.s100b), 0.00266868245717244)
})
test_that("var works with auc", {
expect_equal(var(auc(r.wfns)), 0.00146991470882363)
expect_equal(var(auc(r.ndka)), 0.0031908105493913)
expect_equal(var(auc(r.s100b)), 0.00266868245717244)
})
test_that("var with delong and percent works", {
expect_equal(var(r.wfns.percent), 14.6991470882363)
expect_equal(var(r.ndka.percent), 31.908105493913)
expect_equal(var(r.s100b.percent), 26.6868245717244)
})
test_that("var works with auc and percent", {
expect_equal(var(auc(r.wfns.percent)), 14.6991470882363)
expect_equal(var(auc(r.ndka.percent)), 31.908105493913)
expect_equal(var(auc(r.s100b.percent)), 26.6868245717244)
})
test_that("var with delong and percent works", {
expect_equal(var(roc(aSAH$outcome, -aSAH$ndka, percent=TRUE)), 31.908105493913)
expect_equal(var(roc(aSAH$outcome, -aSAH$s100b, percent=TRUE)), 26.6868245717244)
})
# Only test whether var runs and returns without error.
# Uses a very small number of iterations for speed
# Doesn't test whether the results are correct.
test_that_no_progress("bootstrap var runs with roc, auc and smooth.roc objects", {
skip_slow()
for (roc1 in list(r.s100b, auc(r.s100b), smooth(r.s100b), r.s100b.partial1, r.s100b.partial1$auc)) {
n <- round(runif(1, 3, 9)) # keep boot.n small
for (stratified in c(TRUE, FALSE)) {
stratified <- sample(c(TRUE, FALSE), 1)
obtained <- var(roc1, method = "bootstrap",
boot.n = n, boot.stratified = stratified)
expect_is(obtained, "numeric")
expect_false(is.na(obtained))
}
}
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.