Nothing
test_that("case weights", {
lung_surv <- data_lung_surv()
brier_res <- brier_survival(
data = lung_surv,
truth = surv_obj,
.pred
)
expect_equal(
names(brier_res),
c(".metric", ".estimator", ".eval_time", ".estimate")
)
})
test_that("case weights", {
lung_surv <- data_lung_surv()
lung_surv$case_wts <- rep(2, nrow(lung_surv))
brier_res <- brier_survival(
data = lung_surv,
truth = surv_obj,
.pred
)
brier_res_case_wts <- brier_survival(
data = lung_surv,
truth = surv_obj,
.pred,
case_weights = case_wts
)
expect_equal(
brier_res$.estimate,
brier_res_case_wts$.estimate
)
})
test_that("works with hardhat case weights", {
lung_surv <- data_lung_surv()
lung_surv$case_wts <- rep(2, nrow(lung_surv))
df <- lung_surv
df$imp_wgt <- hardhat::importance_weights(lung_surv$case_wts)
df$freq_wgt <- hardhat::frequency_weights(lung_surv$case_wts)
expect_no_error(
brier_survival(df, truth = surv_obj, .pred, case_weights = imp_wgt)
)
expect_no_error(
brier_survival(df, truth = surv_obj, .pred, case_weights = freq_wgt)
)
})
# riskRegression compare -------------------------------------------------------
test_that("riskRegression equivalent", {
riskRegression_res <- readRDS(test_path("data/brier_churn_res.rds"))
yardstick_res <- readRDS(test_path("data/tidy_churn.rds")) %>%
brier_survival(
truth = surv_obj,
.pred
)
expect_identical(
riskRegression_res$times,
yardstick_res$.eval_time
)
expect_equal(
riskRegression_res$Brier,
yardstick_res$.estimate
)
})
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.