Nothing
test_that("npcdist NOMAD accounting is owner-level on fast-path fits", {
skip_if_not_installed("crs")
old_opts <- options(np.messages = FALSE, np.tree = FALSE)
on.exit(options(old_opts), add = TRUE)
suppressPackageStartupMessages(library(np))
set.seed(42)
n <- 300L
x <- runif(n)
y <- runif(n)
fit <- npcdist(
y ~ x,
nomad = TRUE,
search.engine = "nomad",
cykerbound = "range"
)
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])
)
ev <- np:::.npcdistbw_eval_only(
data.frame(x = x),
data.frame(y = y),
NULL,
fit$bws,
invalid.penalty = "baseline",
penalty.multiplier = 10
)
expect_equal(as.numeric(ev$num.feval), 1)
expect_equal(as.numeric(ev$num.feval.fast), 1)
})
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.