Nothing
# Built following instructions from
# https://mllg.github.io/checkmate/articles/checkmate.html#extending-checkmate
check_not_data_table <- function(x) {
if (inherits(x, "data.table")) {
return("must NOT be a data.table")
}
return(TRUE)
}
assert_not_data_table <- function(
x,
.var.name = checkmate::vname(x),
add = NULL
) {
if (missing(x)) {
stop(sprintf(
"argument \"%s\" is missing, with no default",
.var.name
))
}
res <- check_not_data_table(x)
checkmate::makeAssertion(x, res, .var.name, add)
}
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.