#' ks.load_extension
#'
#' Function for loading extension.
#'
#' @param name Name of extension to be loaded.
#'
#' @export
ks.load_extension = function(name = "deeplearning") {
if(file.exists(paste0(name, ".R"))) {
source(paste0(name, ".R"))
} else {
link = paste0("https://raw.githubusercontent.com/kstawiski/miRNAselector/master/extensions/", name, ".R")
devtools::source_url(link)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.