Nothing
test_that("Half Normal priors are rendering correctly", {
# Make normal prior
object <- prior_half_normal(mu = 2, sigma = 3)
# Expect correct class
expect_class(object, "PriorHalfNormal")
expect_equal(object@mu, 2L)
expect_equal(object@sigma, 3L)
expect_equal(psborrow2:::h_glue(object@constraint), "<lower=2>")
# Expect N inputs correct
expect_equal(NROW(slotNames(object)) - 3, object@n_param)
# Errors
expect_error(prior_half_normal(mu = 2, sigma = -1),
regexp = "invalid class .PriorHalfNormal. object: sigma must be >0"
)
})
test_that("show works for PriorHalfNormal", {
expect_snapshot_output(show(prior_half_normal(0, 0.8)))
})
test_that("plot works for PriorHalfNormal", {
vdiffr::expect_doppelganger(
"prior_half_normal_plot",
plot(prior_half_normal(0, 0.8))
)
})
test_that("constraints work for PriorHalfNormal", {
expect_equal(eval_constraints(prior_half_normal(2, 5)), "<lower=2>")
expect_equal(eval_constraints(prior_half_normal(4, 5)), "<lower=4>")
expect_equal(eval_constraints(prior_half_normal(200, 10000)), "<lower=200>")
})
test_that("half_normal_prior() throws error", {
expect_error(half_normal_prior(),
regexp = "deprecated"
)
expect_error(half_normal_prior(0, 0.8),
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.