Nothing
#' Running function with safe mode
#'
#' @param func Functions to run
#'
#' @return Same as of functions
#' @export
#'
#' @examples
#' safe_run(print("Hello"))
safe_run <- function(func) {
tryCatch(
func,
error = function(e) {
message(conditionMessage(e))
NULL
}
)
}
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.