Nothing
test_that("throws error for flipped boundary",{
expect_error(p3_var_rate(x = function(x) 1, from = 1, to = 0))
})
test_that("throws warning for too low values of f_max",{
expect_warning(p3_var_rate(x = function(x) 1000, from = 0,to = 1, n = 1000))
})
test_that("retruns correct number of events under conditioning",{
n = 10
expect_equal(length(p3_var_rate(function(x) 1, from = 0, to = 1, n = n)), n)
})
test_that("runs without error", {
expect_no_condition(p3_var_rate(x = c(0, 1), y = c(1,1), 0, 1))
})
test_that("returns empty numeric vector for sample size 0", {
expect_type(p3_var_rate(identity, from = 0, to = 1, n = 0), "double")
expect_equal(length(p3_var_rate(identity, from = 0, to = 1, n = 0)), 0)
})
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.