Nothing
library(pROC)
data(aSAH)
context("ci.se")
# Only test whether ci.se runs and returns without error.
# Uses a very small number of iterations for speed
# Doesn't test whether the results are correct.
# Silence progress bars
options(pROCProgress = list(name = "none"))
for (stratified in c(TRUE, FALSE)) {
for (test.roc in list(r.s100b, smooth(r.s100b))) {
test_that("ci.se with default specificities", {
n <- round(runif(1, 3, 9)) # keep boot.n small
obtained <- ci.se(test.roc, boot.n = n,
boot.stratified = stratified, conf.level = .91)
expect_is(obtained, "ci.se")
expect_is(obtained, "ci")
expect_equal(dim(obtained), c(11, 3))
expect_equal(attr(obtained, "conf.level"), .91)
expect_equal(attr(obtained, "boot.n"), n)
expect_equal(colnames(obtained), c("4.5%", "50%", "95.5%"))
expect_equal(attr(obtained, "boot.stratified"), stratified)
})
test_that("ci.se accepts one specificity", {
n <- round(runif(1, 3, 9)) # keep boot.n small
obtained <- ci.se(test.roc, specificities = 0.9, boot.n = n,
boot.stratified = stratified, conf.level = .91)
expect_is(obtained, "ci.se")
expect_is(obtained, "ci")
expect_equal(dim(obtained), c(1, 3))
expect_equal(attr(obtained, "conf.level"), .91)
expect_equal(attr(obtained, "boot.n"), n)
expect_equal(colnames(obtained), c("4.5%", "50%", "95.5%"))
expect_equal(attr(obtained, "boot.stratified"), stratified)
})
}
}
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.