deparse_safe <- function(expr, collapse = "\n", backtick = TRUE) {
out <- deparse_direct(
expr,
control = deparse_control_custom,
backtick = backtick
)
if (length(out) > 1L) {
out <- paste(out, collapse = collapse)
}
out
}
deparse_control_custom <- .deparseOpts(
c("keepNA", "keepInteger", "niceNames")
)
deparse_direct <- function(...) {
produce_deparse_direct()(...)
}
produce_deparse_direct <- function() {
.deparseOpts <- identity
environment(deparse) <- environment()
deparse
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.