Nothing
stop_no_method <- function(func, x, msg = NULL, msg_append = NULL) {
if (is.null(msg))
msg <- function(cls) paste0("no suitable ", substitute(func),
"() method for object of classes <",
paste0(cls, collapse = ", "), ">")
msg <- msg(class(x))
if (!is.null(msg_append))
msg <- paste0(msg, "; ", msg_append)
err <- structure(
list(
message = msg,
call = NULL,
func = substitute(func),
classes = class(x)
),
class = c("error_no_method", "error", "condition")
)
stop(err)
}
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.