Nothing
      #' @importFrom utils type.convert
sag_clean <- function(x, keep_html = FALSE) {
  x <- as.matrix(x)
  mode(x) <- "character"
  if (!keep_html) {
    # remove any html tags - this can happen in the SAG graph settings entries!
    x[] <- gsub("<.*?>", "", x)
  }
  # trim white space
  x[] <- trimws(x)
  # SAG uses "" and "NA" to indicate NA
  x[x %in% c("", "NA", "na")] <- NA
  # make into a data.frame
  x <- as.data.frame(x, stringsAsFactors = FALSE)
  type.convert(x, as.is = TRUE, tryLogical = FALSE)
}
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.