Nothing
check_use <- function(use)
{
match.arg(
tolower(use),
c("everything", "all.obs", "complete.obs", "pairwise.complete.obs")
)
}
is.vec <- function(x)
{
is.vector(x) && !is.list(x)
}
check.is.flag <- function(x)
{
if (!(is.logical(x) && length(x) == 1 && (!is.na(x))))
{
nm <- deparse(substitute(x))
stop(paste0("argument '", nm, "' must be TRUE or FALSE"))
}
invisible()
}
check_badvals <- function(x)
{
.Call(R_check_badvals, x)
}
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.