Nothing
test_that("documented datasets load", {
pkdata <- utils::data(package = "tester")$results
if (NROW(pkdata)) {
en <- new.env(parent = emptyenv())
for (nm in pkdata[, "Item"]) {
expect_silent(utils::data(list = nm, package = "tester", envir = en))
expect_true(exists(nm, envir = en), info = paste("Dataset not found after load:", nm))
}
} else {
succeed("No datasets declared.")
}
})
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.