Nothing
test_that("create_kernel_functions works with different options", {
# Test different kernel types
kernels <- c("Schennach2004", "sinc", "normal", "epanechnikov")
for(k in kernels) {
result <- create_kernel_functions(kernel.fun = k)
expect_type(result, "list")
expect_true(all(c("kernel", "kernel_ft") %in% names(result)))
expect_type(result$kernel, "closure")
expect_type(result$kernel_ft, "closure")
}
})
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.