#' object to string
#'
#' This function takes an R object and converts it to a string
#' @param obj object to transform
#' @keywords helper function
#' @export
#' @examples obj2str(objectname)
#' obj2str()
#####changes object to string
obj2str <- function(obj) {
return(deparse(substitute(obj)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.