Nothing
test_that("draw() works with lambda option", {
set.seed(123)
l <- function(t) {
return(2)
}
lmaj_intercept <- 2.2
lmaj_slope <- 0
expect_no_error(withr::with_preserve_seed(df <- draw(lambda = l, line_majorizer_intercept = lmaj_intercept, line_majorizer_slope = lmaj_slope, t_min = 0, t_max = 10)))
check_ppp_sample_validity(times = df, t_min = 0, t_max = 10)
expect_no_error(withr::with_preserve_seed(df <- draw(lambda = l, line_majorizer_intercept = lmaj_intercept, line_majorizer_slope = lmaj_slope, t_min = 0, t_max = 10, atleast1 = TRUE)))
check_ppp_sample_validity(times = df, t_min = 0, t_max = 10, atleast1 = TRUE)
})
test_that("draw() works with Lambda option", {
set.seed(123)
L <- function(t) {
return(2 * t)
}
Li <- function(z) {
return(z / 2)
}
expect_no_error(withr::with_preserve_seed(df <- draw(Lambda = L, Lambda_inv = Li, t_min = 0, t_max = 10)))
check_ppp_sample_validity(times = df, t_min = 0, t_max = 10)
expect_no_error(withr::with_preserve_seed(df <- draw(Lambda = L, Lambda_inv = Li, t_min = 0, t_max = 10, atleast1 = TRUE)))
check_ppp_sample_validity(times = df, t_min = 0, t_max = 10, atleast1 = TRUE)
})
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.