Nothing
test_that("evaluate_survdnn returns expected metric values", {
skip_on_cran()
skip_if_not(torch::torch_is_installed())
data <- survival::veteran
mod <- survdnn(Surv(time, status) ~ age + karno + celltype,
data = data, epochs = 5, verbose = FALSE)
times <- c(30, 90, 180)
out <- evaluate_survdnn(mod, metrics = c("cindex", "ibs", "brier"), times = times)
expect_s3_class(out, "data.frame")
expect_true(all(c("metric", "value") %in% names(out)))
expect_true(any(out$metric == "cindex"))
expect_true(any(out$metric == "ibs"))
expect_true(any(out$metric == "brier"))
})
test_that("evaluate_survdnn errors with unknown metrics or missing times", {
skip_on_cran()
skip_if_not(torch::torch_is_installed())
data <- survival::veteran
mod <- survdnn(Surv(time, status) ~ age + karno + celltype,
data = data, epochs = 5, verbose = FALSE)
expect_error(evaluate_survdnn(mod, metrics = "abc", times = 100), "Unknown metric")
expect_error(evaluate_survdnn(mod, metrics = "cindex"), "must provide `times`")
})
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.