Nothing
test_that("OutcomeBinaryLogistic distribution is rendering correctly", {
# Binomial endpoint class
bin_endpoint <- outcome_bin_logistic(
binary_var = "response",
baseline_prior = prior_normal(0, 1000)
)
# Expect correct class
expect_class(bin_endpoint, "OutcomeBinaryLogistic")
expect_equal(bin_endpoint@n_param, 0L)
# Errors
expect_error(outcome_bin_logistic(),
regexp = 'argument \"binary_var\" is missing, with no default'
)
})
test_that("get_vars works for OutcomeBinaryLogistic", {
expect_identical(
get_vars(outcome_bin_logistic(
binary_var = "response",
baseline_prior = prior_normal(0, 1000)
)),
c(binary_var = "response")
)
expect_identical(
get_vars(outcome_bin_logistic(
binary_var = "response",
baseline_prior = prior_normal(0, 1000),
weight_var = "w"
)),
c(binary_var = "response", weight_var = "w")
)
})
test_that("outcome_bin_logistic works with weights", {
result <- outcome_bin_logistic(
binary_var = "response",
baseline_prior = prior_normal(0, 1000),
weight_var = "w"
)
expect_class(result, "OutcomeBinaryLogistic")
expect_equal(result@weight_var, "w")
})
test_that("logistic_bin_outcome() throws error", {
expect_error(logistic_bin_outcome(),
regexp = "deprecated"
)
expect_error(logistic_bin_outcome(a = 2),
regexp = "deprecated"
)
})
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.