Nothing
# HELPER FUNCTIONS -----
validate_numericish <- function(x, function_label) {
if ( !is_numericish(x) ) {
stop(paste0(function_label, "(): input data type must be numeric or logical. Type supplied is: ", class(x)[[1]]), call. = FALSE)
}
}
is_numericish <- function(x) {
ret <- (is.numeric(x)) | (is.logical(x))
return(ret)
}
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.