#' @export
check.name <- function(object){
the.name <- deparse(substitute(object))
if( !exists(the.name) ){
warning( paste("Object '",the.name,"' not found",sep="") )
return(FALSE)
} else {
return(TRUE)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.