Nothing
      ## qtlchartsversion
## Karl W Broman
#' print the installed version of R/qtlcharts
#'
#' @return Character string with version number
#'
#' @examples
#' qtlchartsversion()
#'
#' @export
qtlchartsversion <-
function()
{
    version <- unlist(utils::packageVersion("qtlcharts"))
    if (length(version) == 3) {
        return(paste(c(version, ".", "-")[c(1, 4, 2, 5, 3)],
            collapse = ""))
    }
    paste(version, collapse = ".")
}
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.