Nothing
test_that("npudens exposes unconditional fast counts in bandwidth summary", {
set.seed(42)
n <- 100L
y <- runif(n)
fit <- npudens(
~ y,
ckerbound = "fixed",
ckerlb = 0,
ckerub = 1,
nomad = TRUE
)
expect_true(is.finite(as.numeric(fit$bws$num.feval[1L])))
expect_true(is.finite(as.numeric(fit$bws$num.feval.fast[1L])))
expect_gt(as.numeric(fit$bws$num.feval.fast[1L]), 0)
expect_lte(as.numeric(fit$bws$num.feval.fast[1L]), as.numeric(fit$bws$num.feval[1L]))
txt <- paste(capture.output(summary(fit$bws)), collapse = "\n")
expect_true(grepl("Number of Function Evaluations:", txt, fixed = TRUE))
expect_true(grepl("fast =", txt, fixed = TRUE))
expect_true(grepl(sprintf("fast = %s", format(fit$bws$num.feval.fast[1L])), txt, fixed = 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.