#' fx2str
#'
#' convert fx to character string
fx2str <- function(fx) {
fx_vec <- as.character(fx)
fx_str <- paste(fx_vec[2],fx_vec[1],fx_vec[3])
return(fx_str)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.