Nothing
update_bw_name_metadata <- getFromNamespace("updateBwNameMetadata", "np")
test_that("updateBwNameMetadata updates bandwidth metadata deterministically", {
bws <- list(varnames = list(x = "oldx", y = "oldy"))
names_in <- list(xnames = "x_new", ynames = "y_new")
out <- update_bw_name_metadata(nameList = names_in, bws = bws)
expect_equal(out$xnames, "x_new")
expect_equal(out$ynames, "y_new")
expect_equal(out$varnames$x, "x_new")
expect_equal(out$varnames$y, "y_new")
expect_equal(bws$varnames$x, "oldx")
expect_equal(bws$varnames$y, "oldy")
})
test_that("updateBwNameMetadata is a no-op for empty metadata input", {
bws <- list(varnames = list(x = "x0"))
out <- update_bw_name_metadata(nameList = list(), bws = bws)
expect_equal(out, bws)
})
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.